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).
2008-02-17 15:46:49 -04:00
|
|
|
/***********************************************************************/
|
|
|
|
/* Implements the string (as opposed to unicode) version of the
|
|
|
|
built-in formatters for string, int, float. That is, the versions
|
2009-10-15 14:45:39 -03:00
|
|
|
of int.__format__, etc., that take and return string objects */
|
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).
2008-02-17 15:46:49 -04:00
|
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
#include "../Objects/stringlib/stringdefs.h"
|
|
|
|
|
2009-04-29 21:58:58 -03:00
|
|
|
#define FORMAT_STRING _PyBytes_FormatAdvanced
|
|
|
|
#define FORMAT_LONG _PyLong_FormatAdvanced
|
|
|
|
#define FORMAT_INT _PyInt_FormatAdvanced
|
|
|
|
#define FORMAT_FLOAT _PyFloat_FormatAdvanced
|
2009-10-15 14:45:39 -03:00
|
|
|
#ifndef WITHOUT_COMPLEX
|
2009-04-29 21:58:58 -03:00
|
|
|
#define FORMAT_COMPLEX _PyComplex_FormatAdvanced
|
2009-10-15 14:45:39 -03:00
|
|
|
#endif
|
2008-05-30 15:10:04 -03:00
|
|
|
|
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).
2008-02-17 15:46:49 -04:00
|
|
|
#include "../Objects/stringlib/formatter.h"
|