COMMITS
/ Python/formatter_unicode.c June 1, 2023
V
gh-92536: Remove PyUnicode_READY() calls (#105210)
Victor Stinner committed
May 13, 2022
V
gh-89653: Use int type for Unicode kind (#92704)
Victor Stinner committed
April 11, 2022
J
bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)
John Belmonte committed
March 14, 2022
O
bpo-46920: Remove disabled debug code added decades ago and likely unnecessary (GH-31812)
Oleg Iarygin committed
October 19, 2021
V
bpo-35134: Add Include/cpython/longobject.h (GH-29044)
Victor Stinner committed
September 24, 2021
N
bpo-20524: adds better error message for `.format()` (GH-28310)
Nikita Sobolev committed
May 13, 2021
I
bpo-28146: Fix a confusing error message in str.format() (GH-24213)
Irit Katriel committed
January 25, 2021
S
bpo-27772: Make preceding width with 0 valid in string format. (GH-11270)
Serhiy Storchaka committed
September 1, 2020
April 11, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345)
Serhiy Storchaka committed
March 9, 2020
S
bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329)
Serhiy Storchaka committed
March 7, 2020
A
closes bpo-39878: Remove unused arguments from static functions. (GH-18822)
Andy Lester committed
March 1, 2020
A
closes bpo-39803: Remove unused str from _PyLong_FormatAdvancedWriter. (GH-18709)
Andy Lester committed
February 7, 2020
V
bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)
Victor Stinner committed
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