COMMITS
/ Objects/stringlib/unicode_format.h October 9, 2024
V
gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)
Victor Stinner committed
July 2, 2023
V
gh-106320: Add pycore_complexobject.h header file (#106339)
Victor Stinner committed
June 1, 2023
V
gh-92536: Remove PyUnicode_READY() calls (#105210)
Victor Stinner committed
November 22, 2022
V
gh-99537: Use Py_SETREF() function in C code (#99657)
Victor Stinner committed
November 10, 2022
V
gh-99300: Use Py_NewRef() in Objects/ directory (#99354)
Victor Stinner committed
October 14, 2021
V
bpo-35134: Add Include/cpython/floatobject.h (GH-28957)
Victor Stinner committed
December 1, 2020
V
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner committed
July 30, 2019
M
Fix typos in comments, docs and test names (#15018)
Min ho Kim committed
June 1, 2019
F
Improve exception message for str.format (GH-12675)
Francisco Couzo committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
August 3, 2017
S
bpo-30978: str.format_map() now passes key lookup exceptions through. (#2790)
Serhiy Storchaka committed
January 23, 2017
S
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka committed
April 17, 2016
S
Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error
Serhiy Storchaka committed
S
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
Serhiy Storchaka committed
August 26, 2015
E
Fixed an incorrect comment.
Eric V. Smith committed
May 17, 2013
B
rewrite the parsing of field names to be more consistent wrt recursive expansion
Benjamin Peterson committed
B
only recursively expand in the format spec (closes #17644)
Benjamin Peterson committed
April 17, 2013
V
Close #17694: Add minimum length to _PyUnicodeWriter
Victor Stinner committed
April 2, 2013
V
Add _PyUnicodeWriter_WriteSubstring() function
Victor Stinner committed
February 23, 2013
S
Remove unused defines.
Serhiy Storchaka committed
June 4, 2012
V
Issue #14993: Use standard "unsigned char" instead of a unsigned char bitfield
Victor Stinner committed
May 29, 2012
V
Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args)
Victor Stinner committed
May 9, 2012
V
Rename unicode_write_t structure and its methods to "_PyUnicodeWriter"
Victor Stinner committed
V
Issue #14744: Inline unicode_writer_write_char() and unicode_write_str()
Victor Stinner committed
May 7, 2012
V
Close #14716: str.format() now uses the new "unicode writer" API instead of the
Victor Stinner committed
March 22, 2012
A
Issue #14387: Do not include accu.h from Python.h.
Antoine Pitrou committed
December 1, 2011
V
Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0)
Victor Stinner committed
November 3, 2011
V
Replace PyUnicodeObject type by PyObject
Victor Stinner committed
October 7, 2011
A
Fix massive slowdown in string formatting with str.format.
Antoine Pitrou committed
October 6, 2011
A
Fix compilation warnings under 64-bit Windows
Antoine Pitrou committed
September 28, 2011
M
Implement PEP 393.
Martin v. Löwis committed