summaryrefslogtreecommitdiff
path: root/Objects/stringlib/unicode_format.h
Commit message (Expand)AuthorAgeFilesLines
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-4/+2
* Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-171-1/+1
|\
| * Fixed an incorrect comment.Eric V. Smith2015-08-261-1/+1
* | Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
|/
* rewrite the parsing of field names to be more consistent wrt recursive expansionBenjamin Peterson2013-05-171-62/+53
* merge 3.3Benjamin Peterson2013-05-171-15/+9
|\
| * Close #17694: Add minimum length to _PyUnicodeWriterVictor Stinner2013-04-171-3/+3
| * Add _PyUnicodeWriter_WriteSubstring() functionVictor Stinner2013-04-031-12/+6
* | only recursively expand in the format spec (closes #17644)Benjamin Peterson2013-05-171-2/+8
|/
* Remove unused defines.Serhiy Storchaka2013-02-231-6/+0
* Issue #14993: Use standard "unsigned char" instead of a unsigned char bitfieldVictor Stinner2012-06-041-1/+1
* Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args ...Victor Stinner2012-05-291-25/+21
* Rename unicode_write_t structure and its methods to "_PyUnicodeWriter"Victor Stinner2012-05-091-9/+9
* Issue #14744: Inline unicode_writer_write_char() and unicode_write_str()Victor Stinner2012-05-091-10/+26
* Close #14716: str.format() now uses the new "unicode writer" API instead of theVictor Stinner2012-05-071-41/+19
* Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-221-0/+1
* Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0)Victor Stinner2011-12-011-1/+1
* Replace PyUnicodeObject type by PyObjectVictor Stinner2011-11-041-12/+8
* Fix massive slowdown in string formatting with str.format.Antoine Pitrou2011-10-071-128/+24
* Fix compilation warnings under 64-bit WindowsAntoine Pitrou2011-10-061-1/+1
* Implement PEP 393.Martin v. Löwis2011-09-281-0/+1416