- cb064fc bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174) by Victor Stinner · 7 years ago
- 28773ca bpo-31780: Fix incorrect error message for ',x', ',b', ',o' specs (#4002) by Dargor · 7 years ago
- b2e5794 bpo-31338 (#3374) by Barry Warsaw · 7 years ago
- f432a32 bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157) by Stefan Krah · 7 years ago
- 995026a merge 3.5 (#28119) by Benjamin Peterson · 8 years ago
- 59e5e0d improve type-safe of and prevent double-frees in get_locale_info (#28119) by Benjamin Peterson · 8 years ago
- eb0dfa9 make invalid_comma_and_underscore a real prototype by Benjamin Peterson · 8 years ago
- 89e1b1a Issue 27080: PEP 515: add '_' formatting option. by Eric V. Smith · 8 years ago
- 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
- 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
- 1f93261 Issue #27818: Speed up parsing width and precision in format() strings for by Serhiy Storchaka · 8 years ago
- 1ce738e Merge typo fixes from 3.5 by Martin Panter · 8 years ago
- 4c35964 Corrections for a/an in code comments and documentation by Martin Panter · 8 years ago
- 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
- a12572f Close issue #8931: Make alternate formatting for 'c' raise an exception. Patch by Torsten Landschoff. by Eric V. Smith · 11 years ago
- 2ea9712 Issue #12546: Allow \x00 as a fill character for builtin type __format__ methods. by Eric V. Smith · 11 years ago
- 4a58707 Add _PyUnicodeWriter_WriteASCIIString() function by Victor Stinner · 11 years ago
- 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
- 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
- 76d3850 Issue #9566: Fix a compiler warning on Windows x64 by Victor Stinner · 11 years ago
- 2ab07f0 (Merge 3.3) Issue #18137: Detect integer overflow on precision in by Victor Stinner · 11 years ago
- 2f084ec Issue #18137: Detect integer overflow on precision in float.__format__() and by Victor Stinner · 11 years ago
- 9ce59bb Fix a compilater warning on Windows 64-bit by Victor Stinner · 11 years ago
- 22c103b Fix a compiler warning: use unsigned int type instead of enum PyUnicode_Kind to by Victor Stinner · 11 years ago
- eb4b5ac Close #16757: Avoid calling the expensive _PyUnicode_FindMaxChar() function by Victor Stinner · 12 years ago
- 8ad5b07 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
- c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
- 621ef3d Issue #15609: Optimize str%args for integer argument by Victor Stinner · 12 years ago
- d9c1bf7 After the jump in line 1051 unicode_tmp is NULL. Found by Coverity. by Stefan Krah · 12 years ago
- 2d6266d Remove now unused IntOrLongToString type by Victor Stinner · 12 years ago
- 8a250fa Comment out a dead increment. by Brett Cannon · 12 years ago
- 39378f7 format_obj: make it static by doko@ubuntu.com · 12 years ago
- c9d369f Optimize _PyUnicode_FastCopyCharacters() when maxchar(from) > maxchar(to) by Victor Stinner · 12 years ago
- d3f0882 Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args) by Victor Stinner · 12 years ago
- ece58de Close #14648: Compute correctly maxchar in str.format() for substrin by Victor Stinner · 13 years ago
- 80d07f8 inherit maxchar of field value where needed (closes #14648) by Benjamin Peterson · 13 years ago
- 90f50d4 Issue #13706: Fix format(float, "n") for locale with non-ASCII decimal point (e.g. ps_aF) by Victor Stinner · 13 years ago
- 41a863c Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator by Victor Stinner · 13 years ago
- ed27785 Issue #13706: Add assertions to detect bugs earlier by Victor Stinner · 13 years ago
- 6d766fc Silence last compilation warning. by Amaury Forgeot d'Arc · 13 years ago
- cd27df3 Fix compilation warnings (seen on win32 buildbot) by Amaury Forgeot d'Arc · 13 years ago
- a4ac600 Issue #13706: Support non-ASCII fill characters by Victor Stinner · 13 years ago
- d25cfe6 Improve exception text. Closes issue 13811. by Eric V. Smith · 13 years ago
- 21e0da2 remove some usage of Py_UNICODE_TOUPPER/LOWER by Benjamin Peterson · 13 years ago
- 3fe5531 Add a new PyUnicode_Fill() function by Victor Stinner · 13 years ago
- 47862d4 Issue #9530: Fix undefined behaviour due to signed overflow in Python/formatter_unicode.c. by Mark Dickinson · 13 years ago
- c4f281e Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead by Victor Stinner · 13 years ago
- c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
- fb9ea8c Don't check for the maximum character when copying from unicodeobject.c by Victor Stinner · 13 years ago
- c3cec78 Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII by Victor Stinner · 13 years ago
- fd85c3a fill_number() and format_string_internal() check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
- dba2dee fill_number() ensures that the 'digits' string is ready by Victor Stinner · 13 years ago
- afbaa20 fill_char() can now propagate an error by Victor Stinner · 13 years ago
- d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
- 01458c7 Remove the uses of WITHOUT_COMPLEX introduced in r75471 by Mark Dickinson · 15 years ago
- 42e3055 Merged revisions 75440 via svnmerge from by Mark Dickinson · 15 years ago
- 58a4224 Issue #1588: Add complex.__format__. by Eric Smith · 16 years ago
- 4a7d76d Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
- 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago