| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-46307: Add string.Template.get_identifiers() method (GH-30493) | Ben Kehoe | 2022-01-11 | 1 | -0/+29 |
|
|
* | bpo-45225: use map function instead of genexpr in capwords (GH-28342) | speedrun-program | 2021-09-16 | 1 | -1/+1 |
|
|
* | bpo-38208: Simplify string.Template by using __init_subclass__(). (GH-16256) | Serhiy Storchaka | 2019-10-21 | 1 | -24/+22 |
|
|
* | bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) | Serhiy Storchaka | 2019-06-01 | 1 | -32/+9 |
|
|
* | bpo-31672: Restore the former behavior when override flags in Template. (#5099) | Serhiy Storchaka | 2018-01-04 | 1 | -4/+1 |
|
|
* | bpo-31672 - Add one last minor clarification for idpattern (#4483) | Barry Warsaw | 2017-11-21 | 1 | -4/+7 |
|
|
* | bpo-31672: Fix string.Template accidentally matched non-ASCII identifiers (GH... | INADA Naoki | 2017-10-13 | 1 | -1/+5 |
|
|
* | bpo-1198569: Allow string.Template braced pattern to be different (#3288) | Barry Warsaw | 2017-09-04 | 1 | -1/+3 |
|
|
* | Issue #29193: A format string argument for string.Formatter.format() | Serhiy Storchaka | 2017-01-13 | 1 | -8/+2 |
|
|
* | #27364: fix "incorrect" uses of escape character in the stdlib. | R David Murray | 2016-09-08 | 1 | -1/+1 |
|
|
* | Closes #26809: Merge with 3.5 | Zachary Ware | 2016-06-04 | 1 | -3/+7 |
|\ |
|
| * | Issue #26809: Add __all__ to string module. Patch by Emanuel Barry | Zachary Ware | 2016-06-04 | 1 | -3/+7 |
|
|
* | | Issue #25034: Merge from 3.5. | Eric V. Smith | 2015-09-29 | 1 | -5/+6 |
|\ \
| |/ |
|
| * | Issue #25034: Merge from 3.4. | Eric V. Smith | 2015-09-29 | 1 | -5/+6 |
| |\ |
|
| | * | Fixed issue #25034: Fix string.Formatter problem with auto-numbering | Eric V. Smith | 2015-09-29 | 1 | -5/+6 |
|
|
| * | | Reverting my previous commit. | Yury Selivanov | 2015-05-30 | 1 | -2/+7 |
|/ / |
|
* | | Issue #24309: Removed Python 2 idioms. | Serhiy Storchaka | 2015-05-28 | 1 | -7/+2 |
|
|
* | | Issue #23671: string.Template now allows to specify the "self" parameter as | Serhiy Storchaka | 2015-03-24 | 1 | -3/+26 |
|\ \
| |/ |
|
| * | Issue #23671: string.Template now allows to specify the "self" parameter as | Serhiy Storchaka | 2015-03-24 | 1 | -3/+23 |
|/ |
|
* | Issue #13598: Add auto-numbering of replacement fields to string.Formatter. | Eric V. Smith | 2014-04-14 | 1 | -2/+21 |
|
|
* | Merge #13579: teach string.Formatter about 'a'. | R David Murray | 2012-08-19 | 1 | -4/+6 |
|\ |
|
| * | #13579: teach string.Formatter about 'a'. | R David Murray | 2012-08-19 | 1 | -4/+6 |
|
|
* | | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). | Ezio Melotti | 2011-09-28 | 1 | -1/+1 |
|
|
* | | Issue #11297: Add collections.ChainMap() | Raymond Hettinger | 2011-02-26 | 1 | -3/+3 |
|
|
* | | Factor-out common code for helper classes. | Raymond Hettinger | 2011-02-22 | 1 | -19/+3 |
|/ |
|
* | #9418: first step of moving private string methods to _string module. | Georg Brandl | 2010-10-14 | 1 | -4/+6 |
|
|
* | Issue #1686: Fix string.Template when overriding the pattern attribute. | Florent Xicluna | 2010-09-18 | 1 | -9/+3 |
|
|
* | typo | Florent Xicluna | 2010-09-06 | 1 | -2/+2 |
|
|
* | #6630: allow customizing flags for compiling string.Template.idpattern. | Georg Brandl | 2010-07-29 | 1 | -1/+2 |
|
|
* | Merged revisions 75070 via svnmerge from | Ezio Melotti | 2009-09-26 | 1 | -4/+6 |
|
|
* | remove string.maketrans | Benjamin Peterson | 2009-06-28 | 1 | -22/+0 |
|
|
* | #4351: more appropriate DeprecationWarning stacklevels | Philip Jenvey | 2009-05-08 | 1 | -1/+1 |
|
|
* | Add bytes/bytearray.maketrans() to mirror str.maketrans(), and deprecate | Georg Brandl | 2009-04-12 | 1 | -0/+3 |
|
|
* | #4361: fix string.py docstring, clarify that only ASCII characters are in its... | Georg Brandl | 2008-11-22 | 1 | -9/+9 |
|
|
* | Merged revisions 67154,67157-67159,67175-67176,67189,67224-67227,67234 via sv... | Benjamin Peterson | 2008-11-16 | 1 | -3/+2 |
|
|
* | Rename buffer -> bytearray. | Guido van Rossum | 2007-11-21 | 1 | -1/+1 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -3/+3 |
|
|
* | Changed some ValueError's to KeyError and IndexError. | Eric Smith | 2007-09-04 | 1 | -3/+13 |
|
|
* | Removed used_args param from string.Formatter.get_field. It was left in by m... | Eric Smith | 2007-09-02 | 1 | -4/+2 |
|
|
* | string.maketrans() now produces translation tables for bytes.translate() -- w... | Georg Brandl | 2007-08-31 | 1 | -21/+14 |
|
|
* | Changed signature of string.Formatter.get_field, per suggestion by | Eric Smith | 2007-08-31 | 1 | -7/+5 |
|
|
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 | 1 | -1/+1 |
|
|
* | Revert r57685 (weird merge result). | Collin Winter | 2007-08-29 | 1 | -1/+0 |
|
|
* | (no commit message) | Collin Winter | 2007-08-29 | 1 | -0/+1 |
|
|
* | Modified parsing of format strings, so that we always return | Eric Smith | 2007-08-29 | 1 | -4/+13 |
|
|
* | Simplified tuple returned by string._formatter_parser to only have | Eric Smith | 2007-08-28 | 1 | -24/+58 |
|
|
* | PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico... | Eric Smith | 2007-08-27 | 1 | -6/+4 |
|
|
* | PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje... | Eric Smith | 2007-08-26 | 1 | -7/+35 |
|
|
* | Implementation of PEP 3101, Advanced String Formatting. | Eric Smith | 2007-08-25 | 1 | -0/+39 |
|
|
* | Remove string.{letters,lowercase,uppercase}. | Martin v. Löwis | 2007-08-14 | 1 | -6/+3 |
|
|