mirror of
https://github.com/python/cpython.git
synced 2025-07-28 13:44:43 +00:00

Highlights: - Adding PyObject_Format. - Adding string.Format class. - Adding __format__ for str, unicode, int, long, float, datetime. - Adding builtin format. - Adding ''.format and u''.format. - str/unicode fixups for formatters. The files in Objects/stringlib that implement PEP 3101 (stringdefs.h, unicodedefs.h, formatter.h, string_format.h) are identical in trunk and py3k. Any changes from here on should be made to trunk, and changes will propogate to py3k).
12 lines
263 B
C
12 lines
263 B
C
PyObject *
|
|
string__format__(PyObject *self, PyObject *args);
|
|
|
|
PyObject *
|
|
string_long__format__(PyObject *self, PyObject *args);
|
|
|
|
PyObject *
|
|
string_int__format__(PyObject *self, PyObject *args);
|
|
|
|
PyObject *
|
|
string_float__format__(PyObject *self, PyObject *args);
|
|
|