summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2008-06-24 00:42:10 (GMT)
committerEric Smith <eric@trueblade.com>2008-06-24 00:42:10 (GMT)
commit65fe47b9319e20cebf02d34f8abdbcda96d2fa22 (patch)
tree73451eac7ff36a4516fdb7130ef03ee8eafe97da /Include
parent57acc8f5ab751f0831a28a149c4fe44ca0beaf57 (diff)
downloadcpython-65fe47b9319e20cebf02d34f8abdbcda96d2fa22.zip
cpython-65fe47b9319e20cebf02d34f8abdbcda96d2fa22.tar.gz
cpython-65fe47b9319e20cebf02d34f8abdbcda96d2fa22.tar.bz2
Modified interface to _Py_[String|Unicode]InsertThousandsGrouping, in anticipation of fixing issue 3140.
Diffstat (limited to 'Include')
-rw-r--r--Include/stringobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/stringobject.h b/Include/stringobject.h
index 49106ff..d9f1840 100644
--- a/Include/stringobject.h
+++ b/Include/stringobject.h
@@ -182,8 +182,8 @@ PyAPI_FUNC(int) PyString_AsStringAndSize(
see Objects/stringlib/localeutil.h */
PyAPI_FUNC(int) _PyString_InsertThousandsGrouping(char *buffer,
- Py_ssize_t len,
- char *plast,
+ Py_ssize_t n_buffer,
+ Py_ssize_t n_digits,
Py_ssize_t buf_size,
Py_ssize_t *count,
int append_zero_char);