diff options
author | Raymond Hettinger <python@rcn.com> | 2015-05-22 23:56:32 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-05-22 23:56:32 (GMT) |
commit | 573b44c18f69307d7dbc95c950aab57ef7ea303e (patch) | |
tree | ac416703afd065a5ab49c6fad5f1e9386fa614e9 /Misc | |
parent | ab89f9c27fe66b64b5907aad941d58bbc2ede14d (diff) | |
download | cpython-573b44c18f69307d7dbc95c950aab57ef7ea303e.zip cpython-573b44c18f69307d7dbc95c950aab57ef7ea303e.tar.gz cpython-573b44c18f69307d7dbc95c950aab57ef7ea303e.tar.bz2 |
Issue 22189: Add missing methods to UserString
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -64,6 +64,10 @@ Library - Issue 24230: The tempfile module now accepts bytes for prefix, suffix and dir parameters and returns bytes in such situations (matching the os module APIs). +- Issue #22189: collections.UserString now supports __getnewargs__(), + __rmod__(), casefold(), format_map(), isprintable(), and maketrans(). + Patch by Joe Jevnik. + - Issue 24244: Prevents termination when an invalid format string is encountered on Windows in strftime. |