Changeset 388 for python/vendor/current/Include/stringobject.h
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Include/stringobject.h
r2 r388 178 178 ); 179 179 180 180 181 /* Using the current locale, insert the thousands grouping 181 182 into the string pointed to by buffer. For the argument descriptions, 182 183 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); 184 PyAPI_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 */ 193 PyAPI_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); 190 200 191 201 /* Format the object based on the format_spec, as defined in PEP 3101
Note:
See TracChangeset
for help on using the changeset viewer.