COMMITS
/ Python/formatter_unicode.c May 8, 2016
M
Merge typo fixes from 3.5
Martin Panter committed
M
Corrections for a/an in code comments and documentation
Martin Panter committed
December 25, 2015
S
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka committed
April 16, 2014
E
April 14, 2014
E
Issue #12546: Allow \x00 as a fill character for builtin type __format__ methods.
Eric V. Smith committed
November 19, 2013
V
Add _PyUnicodeWriter_WriteASCIIString() function
Victor Stinner committed
August 27, 2013
S
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka committed
S
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka committed
June 24, 2013
V
Issue #9566: Fix a compiler warning on Windows x64
Victor Stinner committed
June 23, 2013
V
(Merge 3.3) Issue #18137: Detect integer overflow on precision in
Victor Stinner committed
V
Issue #18137: Detect integer overflow on precision in float.__format__() and
Victor Stinner committed
May 16, 2013
V
Fix a compilater warning on Windows 64-bit
Victor Stinner committed
May 7, 2013
V
Fix a compiler warning: use unsigned int type instead of enum PyUnicode_Kind to
Victor Stinner committed
April 3, 2013
V
Close #16757: Avoid calling the expensive _PyUnicode_FindMaxChar() function
Victor Stinner committed
February 9, 2013
A
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.
Antoine Pitrou committed
A
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.
Antoine Pitrou committed
October 1, 2012
V
Issue #15609: Optimize str%args for integer argument
Victor Stinner committed
September 6, 2012
S
After the jump in line 1051 unicode_tmp is NULL. Found by Coverity.
Stefan Krah committed
August 9, 2012
V
Remove now unused IntOrLongToString type
Victor Stinner committed
June 25, 2012
B
Comment out a dead increment.
Brett Cannon committed
June 21, 2012
D
format_obj: make it static
doko@ubuntu.com committed
June 16, 2012
V
Optimize _PyUnicode_FastCopyCharacters() when maxchar(from) > maxchar(to)
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
April 23, 2012
V
Close #14648: Compute correctly maxchar in str.format() for substrin
Victor Stinner committed
B
inherit maxchar of field value where needed (closes #14648)
Benjamin Peterson committed
February 24, 2012
V
Issue #13706: Fix format(float, "n") for locale with non-ASCII decimal point (e.g. ps_aF)
Victor Stinner committed
February 23, 2012
V
Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator
Victor Stinner committed
January 31, 2012
V
Issue #13706: Add assertions to detect bugs earlier
Victor Stinner committed
January 23, 2012
A
Silence last compilation warning.
Amaury Forgeot d'Arc committed
A
Fix compilation warnings (seen on win32 buildbot)
Amaury Forgeot d'Arc committed
January 21, 2012
V
Issue #13706: Support non-ASCII fill characters
Victor Stinner committed
January 20, 2012
E
Improve exception text. Closes issue 13811.
Eric V. Smith committed
January 12, 2012
B
remove some usage of Py_UNICODE_TOUPPER/LOWER
Benjamin Peterson committed
January 3, 2012
V
Add a new PyUnicode_Fill() function
Victor Stinner committed
December 1, 2011
M
Issue #9530: Fix undefined behaviour due to signed overflow in Python/formatter_unicode.c.
Mark Dickinson committed
October 11, 2011
V
Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead
Victor Stinner committed
October 7, 2011
M
Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE.
Martin v. Löwis committed
October 5, 2011
V
Don't check for the maximum character when copying from unicodeobject.c
Victor Stinner committed
V
Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII
Victor Stinner committed
September 28, 2011
V
fill_number() and format_string_internal() check for PyUnicode_CopyCharacters() failure
Victor Stinner committed
V
fill_number() ensures that the 'digits' string is ready
Victor Stinner committed
V
fill_char() can now propagate an error
Victor Stinner committed
M
Implement PEP 393.
Martin v. Löwis committed
October 18, 2009
M
Remove the uses of WITHOUT_COMPLEX introduced in r75471
Mark Dickinson committed
October 15, 2009
M
Merged revisions 75440 via svnmerge from
Mark Dickinson committed
April 30, 2009
E
Issue #1588: Add complex.__format__.
Eric Smith committed
May 30, 2008
E
Refactor and clean up str.format() code (and helpers) in advance of optimizations.
Eric Smith committed
August 25, 2007
E
Implementation of PEP 3101, Advanced String Formatting.
Eric Smith committed