COMMITS
/ Python/formatter_unicode.c 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