diff options
author | Barry Warsaw <barry@python.org> | 2017-09-04 21:29:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-04 21:29:27 (GMT) |
commit | 973b901212bd84d279904bab6654709f4ec32470 (patch) | |
tree | b6f89f40da9bd1b938ea75b3b886ed927c45f4ea /Doc | |
parent | d5cd21d75a27a377f2f9c8370fd8e8c7efaeefb1 (diff) | |
download | cpython-973b901212bd84d279904bab6654709f4ec32470.zip cpython-973b901212bd84d279904bab6654709f4ec32470.tar.gz cpython-973b901212bd84d279904bab6654709f4ec32470.tar.bz2 |
What's New for bpo-1198569 (#3303)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 8547660..f0c50e8 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -223,6 +223,13 @@ New function :func:`os.register_at_fork` allows registering Python callbacks to be executed on a process fork. (Contributed by Antoine Pitrou in :issue:`16500`.) +string +------ + +:class:`string.Template` now lets you to optionally modify the regular +expression pattern for braced placeholders and non-braced placeholders +separately. (Contributed by Barry Warsaw in :issue:`1198569`.) + unittest.mock ------------- |