aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/string.py
Commit message (Expand)AuthorAge
* bpo-46307: Add string.Template.get_identifiers() method (GH-30493)Ben Kehoe2022-01-11
* bpo-45225: use map function instead of genexpr in capwords (GH-28342)speedrun-program2021-09-16
* bpo-38208: Simplify string.Template by using __init_subclass__(). (GH-16256)Serhiy Storchaka2019-10-21
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-01
* bpo-31672: Restore the former behavior when override flags in Template. (#5099)Serhiy Storchaka2018-01-04
* bpo-31672 - Add one last minor clarification for idpattern (#4483)Barry Warsaw2017-11-21
* bpo-31672: Fix string.Template accidentally matched non-ASCII identifiers (GH...INADA Naoki2017-10-13
* bpo-1198569: Allow string.Template braced pattern to be different (#3288)Barry Warsaw2017-09-04
* Issue #29193: A format string argument for string.Formatter.format()Serhiy Storchaka2017-01-13
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-08
* Closes #26809: Merge with 3.5Zachary Ware2016-06-04
|\
| * Issue #26809: Add __all__ to string module. Patch by Emanuel BarryZachary Ware2016-06-04
* | Issue #25034: Merge from 3.5.Eric V. Smith2015-09-29
|\|
| * Issue #25034: Merge from 3.4.Eric V. Smith2015-09-29
| |\
| | * Fixed issue #25034: Fix string.Formatter problem with auto-numberingEric V. Smith2015-09-29
| * | Reverting my previous commit.Yury Selivanov2015-05-30
|/ /
* | Issue #24309: Removed Python 2 idioms.Serhiy Storchaka2015-05-28
* | Issue #23671: string.Template now allows to specify the "self" parameter asSerhiy Storchaka2015-03-24
|\|
| * Issue #23671: string.Template now allows to specify the "self" parameter asSerhiy Storchaka2015-03-24
|/
* Issue #13598: Add auto-numbering of replacement fields to string.Formatter.Eric V. Smith2014-04-14
* Merge #13579: teach string.Formatter about 'a'.R David Murray2012-08-19
|\
| * #13579: teach string.Formatter about 'a'.R David Murray2012-08-19
* | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1).Ezio Melotti2011-09-28
* | Issue #11297: Add collections.ChainMap()Raymond Hettinger2011-02-26
* | Factor-out common code for helper classes.Raymond Hettinger2011-02-22
|/
* #9418: first step of moving private string methods to _string module.Georg Brandl2010-10-14
* Issue #1686: Fix string.Template when overriding the pattern attribute.Florent Xicluna2010-09-18
* typoFlorent Xicluna2010-09-06
* #6630: allow customizing flags for compiling string.Template.idpattern.Georg Brandl2010-07-29
* Merged revisions 75070 via svnmerge fromEzio Melotti2009-09-26
* remove string.maketransBenjamin Peterson2009-06-28
* #4351: more appropriate DeprecationWarning stacklevelsPhilip Jenvey2009-05-08
* Add bytes/bytearray.maketrans() to mirror str.maketrans(), and deprecateGeorg Brandl2009-04-12
* #4361: fix string.py docstring, clarify that only ASCII characters are in its...Georg Brandl2008-11-22
* Merged revisions 67154,67157-67159,67175-67176,67189,67224-67227,67234 via sv...Benjamin Peterson2008-11-16
* Rename buffer -> bytearray.Guido van Rossum2007-11-21
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-06
* Changed some ValueError's to KeyError and IndexError.Eric Smith2007-09-04
* Removed used_args param from string.Formatter.get_field. It was left in by m...Eric Smith2007-09-02
* string.maketrans() now produces translation tables for bytes.translate() -- w...Georg Brandl2007-08-31
* Changed signature of string.Formatter.get_field, per suggestion byEric Smith2007-08-31
* Raise statement normalization in Lib/.Collin Winter2007-08-30
* Revert r57685 (weird merge result).Collin Winter2007-08-29
* (no commit message)Collin Winter2007-08-29
* Modified parsing of format strings, so that we always returnEric Smith2007-08-29
* Simplified tuple returned by string._formatter_parser to only haveEric Smith2007-08-28
* PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico...Eric Smith2007-08-27
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-26
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-25
* Remove string.{letters,lowercase,uppercase}.Martin v. Löwis2007-08-14