mirror of
https://github.com/python/cpython.git
synced 2025-07-27 21:24:32 +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).
13 lines
483 B
C
13 lines
483 B
C
/* Implements the unicode (as opposed to string) version of the
|
|
built-in formatter for unicode. That is, unicode.__format__(). */
|
|
|
|
#include "Python.h"
|
|
#include "formatter_unicode.h"
|
|
|
|
#include "../Objects/stringlib/unicodedefs.h"
|
|
|
|
#define FORMAT_STRING unicode__format__
|
|
/* don't define FORMAT_LONG and FORMAT_FLOAT, since we can live
|
|
with only the string versions of those. The builtin format()
|
|
will convert them to unicode. */
|
|
#include "../Objects/stringlib/formatter.h"
|