Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Include/stringobject.h

    r2 r388  
    178178    );
    179179
     180
    180181/* Using the current locale, insert the thousands grouping
    181182   into the string pointed to by buffer.  For the argument descriptions,
    182183   see Objects/stringlib/localeutil.h */
    183 
    184 PyAPI_FUNC(int) _PyString_InsertThousandsGrouping(char *buffer,
    185                                                   Py_ssize_t n_buffer,
    186                                                   Py_ssize_t n_digits,
    187                                                   Py_ssize_t buf_size,
    188                                                   Py_ssize_t *count,
    189                                                   int append_zero_char);
     184PyAPI_FUNC(Py_ssize_t) _PyString_InsertThousandsGroupingLocale(char *buffer,
     185                                  Py_ssize_t n_buffer,
     186                                  char *digits,
     187                                  Py_ssize_t n_digits,
     188                                  Py_ssize_t min_width);
     189
     190/* Using explicit passed-in values, insert the thousands grouping
     191   into the string pointed to by buffer.  For the argument descriptions,
     192   see Objects/stringlib/localeutil.h */
     193PyAPI_FUNC(Py_ssize_t) _PyString_InsertThousandsGrouping(char *buffer,
     194                                  Py_ssize_t n_buffer,
     195                                  char *digits,
     196                                  Py_ssize_t n_digits,
     197                                  Py_ssize_t min_width,
     198                                  const char *grouping,
     199                                  const char *thousands_sep);
    190200
    191201/* Format the object based on the format_spec, as defined in PEP 3101
Note: See TracChangeset for help on using the changeset viewer.