summaryrefslogtreecommitdiffstats
path: root/Objects/stringlib/string_format.h
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 81820 via svnmerge fromBenjamin Peterson2010-06-071-0/+4
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-87/+87
* Merged revisions 72848 via svnmerge fromEric Smith2009-05-231-2/+3
* Merged revisions 72159 via svnmerge fromGeorg Brandl2009-05-011-1/+1
* Merged revisions 70364 via svnmerge fromEric Smith2009-03-141-44/+129
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-2/+2
* #2630: Implement PEP 3138.Georg Brandl2008-06-111-0/+4
* Refactored known type optimization, in anticipation of backporting to 2.6. I...Eric Smith2008-06-021-7/+13
* Optimization of str.format() for cases with unicode, long, and floatEric Smith2008-05-311-7/+28
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Merged revisions 62199 via svnmerge fromMartin v. Löwis2008-04-071-3/+11
* Corrected assert to check for correct type in py3k.Eric Smith2008-02-241-1/+1
* Port 60893 to py3k, without unicode test.Eric Smith2008-02-181-0/+16
* Fixes for shared 2.6 code that implements PEP 3101, advanced stringEric Smith2008-02-171-72/+24
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-4/+4
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-3/+3
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-1/+1
* Simplified recursion logic. Modified variable name to match string.Formatter.Eric Smith2007-09-051-12/+10
* Changed some ValueError's to KeyError and IndexError.Eric Smith2007-09-041-7/+2
* Fix segfault discovered by Ron Adam. Not checking for terminating right brac...Eric Smith2007-09-031-4/+10
* Modified parsing of format strings, so that we always returnEric Smith2007-08-291-155/+157
* Simplified tuple returned by string._formatter_parser to only haveEric Smith2007-08-281-8/+1
* Code layout changes for PEP 7 compliance.Eric Smith2007-08-281-14/+21
* Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, s...Eric Smith2007-08-271-0/+345
* Cleanup in anticipation of moving formatteriterator and fieldnameiterator int...Eric Smith2007-08-271-23/+7
* Fix refleaks in test_unicode and test_string related to the new format code.Neal Norwitz2007-08-271-0/+1
* This adds a leak, but fixes a crash. The leaking code is:Neal Norwitz2007-08-271-0/+1
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-261-165/+260
* Get rid of compiler warning on 64-bitNeal Norwitz2007-08-251-4/+8
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+831