summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2016-06-04 14:35:05 -0500
committerZachary Ware <zachary.ware@gmail.com>2016-06-04 14:35:05 -0500
commitc17a0b87a682dab464d40a8ae1d16c009a1818ce (patch)
treed412abd49a24db98b6c58338a94f4c8d3d897eea /Misc/NEWS
parent78b642c6b2343faf6dcdcbef9e553d82e74e2807 (diff)
downloadcpython-git-c17a0b87a682dab464d40a8ae1d16c009a1818ce.tar.gz
Issue #26809: Add __all__ to string module. Patch by Emanuel Barry
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f51918bf89..64fefad675 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -131,6 +131,8 @@ Core and Builtins
Library
-------
+- Issue #26809: Add ``__all__`` to :mod:`string`. Patch by Emanuel Barry.
+
- Issue #26373: subprocess.Popen.communicate now correctly ignores
BrokenPipeError when the child process dies before .communicate()
is called in more/all circumstances.