aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Objects/stringlib/string_format.h
Commit message (Expand)AuthorAge
* Implement PEP 393.Martin v. Löwis2011-09-28
* Issue #1621: Fix undefined behaviour from signed overflow in datetime module ...Mark Dickinson2011-09-25
* Closes #12579. Positional fields with str.format_map() now raise a ValueError...Eric V. Smith2011-07-18
* #11515: Merge with 3.1.Ezio Melotti2011-03-15
|\
| * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-15
| * Merged revisions 81823,81835 via svnmerge fromBenjamin Peterson2010-06-08
| * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-09
* | Issue #11302: missing type check on _string.formatter_field_name_split and _s...Eric Smith2011-01-29
* | Followup to r86170: fix reference leak in str.formatAntoine Pitrou2010-11-05
* | Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.fo...Eric Smith2010-11-04
* | #9418: first step of moving private string methods to _string module.Georg Brandl2010-10-14
* | Merged revisions 81820 via svnmerge fromBenjamin Peterson2010-06-07
* | Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-09
|/
* Merged revisions 72848 via svnmerge fromEric Smith2009-05-23
* Merged revisions 72159 via svnmerge fromGeorg Brandl2009-05-01
* Merged revisions 70364 via svnmerge fromEric Smith2009-03-14
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-02
* #2630: Implement PEP 3138.Georg Brandl2008-06-11
* Refactored known type optimization, in anticipation of backporting to 2.6. I...Eric Smith2008-06-02
* Optimization of str.format() for cases with unicode, long, and floatEric Smith2008-05-31
* Renamed PyString to PyBytesChristian Heimes2008-05-26
* Merged revisions 62199 via svnmerge fromMartin v. Löwis2008-04-07
* Corrected assert to check for correct type in py3k.Eric Smith2008-02-24
* Port 60893 to py3k, without unicode test.Eric Smith2008-02-18
* Fixes for shared 2.6 code that implements PEP 3101, advanced stringEric Smith2008-02-17
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-19
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-02
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-15
* Simplified recursion logic. Modified variable name to match string.Formatter.Eric Smith2007-09-05
* Changed some ValueError's to KeyError and IndexError.Eric Smith2007-09-04
* Fix segfault discovered by Ron Adam. Not checking for terminating right brac...Eric Smith2007-09-03
* Modified parsing of format strings, so that we always returnEric Smith2007-08-29
* Simplified tuple returned by string._formatter_parser to only haveEric Smith2007-08-28
* Code layout changes for PEP 7 compliance.Eric Smith2007-08-28
* Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, s...Eric Smith2007-08-27
* Cleanup in anticipation of moving formatteriterator and fieldnameiterator int...Eric Smith2007-08-27
* Fix refleaks in test_unicode and test_string related to the new format code.Neal Norwitz2007-08-27
* This adds a leak, but fixes a crash. The leaking code is:Neal Norwitz2007-08-27
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-26
* Get rid of compiler warning on 64-bitNeal Norwitz2007-08-25
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-25