aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Objects/stringlib/unicode_format.h
Commit message (Expand)AuthorAge
* gh-111178: remove redundant casts for functions with correct signatures (#131...Bénédikt Tran2025-04-01
* gh-111178: Fix function signatures for multiple tests (#131496)Victor Stinner2025-03-20
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)Victor Stinner2024-10-09
* gh-106320: Add pycore_complexobject.h header file (#106339)Victor Stinner2023-07-02
* gh-92536: Remove PyUnicode_READY() calls (#105210)Victor Stinner2023-06-02
* gh-99537: Use Py_SETREF() function in C code (#99657)Victor Stinner2022-11-22
* gh-99300: Use Py_NewRef() in Objects/ directory (#99354)Victor Stinner2022-11-10
* bpo-35134: Add Include/cpython/floatobject.h (GH-28957)Victor Stinner2021-10-14
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-01
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-30
* Improve exception message for str.format (GH-12675)Francisco Couzo2019-06-01
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-30
* bpo-30978: str.format_map() now passes key lookup exceptions through. (#2790)Serhiy Storchaka2017-08-03
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-23
* Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-17
|\
| * Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-17
* | Fixed an incorrect comment.Eric V. Smith2015-08-26
|/
* rewrite the parsing of field names to be more consistent wrt recursive expansionBenjamin Peterson2013-05-17
* merge 3.3Benjamin Peterson2013-05-17
|\
| * only recursively expand in the format spec (closes #17644)Benjamin Peterson2013-05-17
* | Close #17694: Add minimum length to _PyUnicodeWriterVictor Stinner2013-04-17
* | Add _PyUnicodeWriter_WriteSubstring() functionVictor Stinner2013-04-03
|/
* Remove unused defines.Serhiy Storchaka2013-02-23
* Issue #14993: Use standard "unsigned char" instead of a unsigned char bitfieldVictor Stinner2012-06-04
* Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args ...Victor Stinner2012-05-29
* Rename unicode_write_t structure and its methods to "_PyUnicodeWriter"Victor Stinner2012-05-09
* Issue #14744: Inline unicode_writer_write_char() and unicode_write_str()Victor Stinner2012-05-09
* Close #14716: str.format() now uses the new "unicode writer" API instead of theVictor Stinner2012-05-07
* Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-22
* Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0)Victor Stinner2011-12-01
* Replace PyUnicodeObject type by PyObjectVictor Stinner2011-11-04
* Fix massive slowdown in string formatting with str.format.Antoine Pitrou2011-10-07
* Fix compilation warnings under 64-bit WindowsAntoine Pitrou2011-10-06
* Implement PEP 393.Martin v. Löwis2011-09-28