Changeset 391 for python/trunk/Python/formatter_string.c
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Python/formatter_string.c
r2 r391 2 2 /* Implements the string (as opposed to unicode) version of the 3 3 built-in formatters for string, int, float. That is, the versions 4 of int.__f loat__, etc., that take and return string objects */4 of int.__format__, etc., that take and return string objects */ 5 5 6 6 #include "Python.h" 7 7 #include "../Objects/stringlib/stringdefs.h" 8 8 9 #define FORMAT_STRING _PyBytes_FormatAdvanced 10 #define FORMAT_LONG _PyLong_FormatAdvanced 11 #define FORMAT_INT _PyInt_FormatAdvanced 12 #define FORMAT_FLOAT _PyFloat_FormatAdvanced 9 #define FORMAT_STRING _PyBytes_FormatAdvanced 10 #define FORMAT_LONG _PyLong_FormatAdvanced 11 #define FORMAT_INT _PyInt_FormatAdvanced 12 #define FORMAT_FLOAT _PyFloat_FormatAdvanced 13 #ifndef WITHOUT_COMPLEX 14 #define FORMAT_COMPLEX _PyComplex_FormatAdvanced 15 #endif 13 16 14 17 #include "../Objects/stringlib/formatter.h"
Note:
See TracChangeset
for help on using the changeset viewer.