COMMITS
/ Python/formatter_unicode.c October 25, 2019
H
Fix typo in formatter_unicode (GH-16831)
Hansraj Das committed
November 26, 2018
V
bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623)
Victor Stinner committed
November 20, 2018
V
bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606)
Victor Stinner committed
October 2, 2018
B
closes bpo-34868: Improve error message with '_' is combined with an invalid type specifier. (GH-9666)
Benjamin Peterson committed
January 15, 2018
V
bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174)
Victor Stinner committed
October 15, 2017
D
September 15, 2017
B
bpo-31338 (#3374)
Barry Warsaw committed
August 21, 2017
S
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157)
Stefan Krah committed
September 14, 2016
B
merge 3.5 (#28119)
Benjamin Peterson committed
B
improve type-safe of and prevent double-frees in get_locale_info (#28119)
Benjamin Peterson committed
September 10, 2016
B
make invalid_comma_and_underscore a real prototype
Benjamin Peterson committed
E
Issue 27080: PEP 515: add '_' formatting option.
Eric V. Smith committed
September 7, 2016
M
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Martin Panter committed
August 30, 2016
R
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Raymond Hettinger committed
August 29, 2016
S
Issue #27818: Speed up parsing width and precision in format() strings for
Serhiy Storchaka committed
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