diff options
author | Eric Smith <eric@trueblade.com> | 2008-02-17 19:46:49 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2008-02-17 19:46:49 (GMT) |
commit | a9f7d6248032c9572b4d2024a1be8bd2823af09f (patch) | |
tree | 5465a1051312055678248db0076d314924ee4ebc /Include | |
parent | e139688d34cc12b23d3a310f10d4f440f75f7d08 (diff) | |
download | cpython-a9f7d6248032c9572b4d2024a1be8bd2823af09f.zip cpython-a9f7d6248032c9572b4d2024a1be8bd2823af09f.tar.gz cpython-a9f7d6248032c9572b4d2024a1be8bd2823af09f.tar.bz2 |
Backport of PEP 3101, Advanced String Formatting, from py3k.
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).
Diffstat (limited to 'Include')
-rw-r--r-- | Include/abstract.h | 7 | ||||
-rw-r--r-- | Include/formatter_string.h | 12 | ||||
-rw-r--r-- | Include/formatter_unicode.h | 12 |
3 files changed, 31 insertions, 0 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index a432a65..c61cc8b 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -529,6 +529,13 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ */ + PyAPI_FUNC(PyObject *) PyObject_Format(PyObject* obj, + PyObject *format_spec); + /* + Takes an arbitrary object and returns the result of + calling obj.__format__(format_spec). + */ + /* Iterators */ PyAPI_FUNC(PyObject *) PyObject_GetIter(PyObject *); diff --git a/Include/formatter_string.h b/Include/formatter_string.h new file mode 100644 index 0000000..14c4811 --- /dev/null +++ b/Include/formatter_string.h @@ -0,0 +1,12 @@ +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); + diff --git a/Include/formatter_unicode.h b/Include/formatter_unicode.h new file mode 100644 index 0000000..51406ab --- /dev/null +++ b/Include/formatter_unicode.h @@ -0,0 +1,12 @@ +PyObject * +unicode__format__(PyObject *self, PyObject *args); + +PyObject * +unicode_long__format__(PyObject *self, PyObject *args); + +PyObject * +unicode_int__format__(PyObject *self, PyObject *args); + +PyObject * +unicode_float__format__(PyObject *self, PyObject *args); + |