aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-11-05 22:49:09 +0000
committerBenjamin Peterson <benjamin@python.org>2008-11-05 22:49:09 +0000
commit93ef79cce3cbc7cd57602e08b59e9a6144044d82 (patch)
tree5e7458749ea2dd43ce66eb604d02bbdf7e7afa2a
parentfix #4211: the __path__ of a frozen package should be a list. (diff)
downloadcpython-93ef79cce3cbc7cd57602e08b59e9a6144044d82.tar.gz
cpython-93ef79cce3cbc7cd57602e08b59e9a6144044d82.tar.bz2
cpython-93ef79cce3cbc7cd57602e08b59e9a6144044d82.zip
period
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 40acabd2d38..7750d817a5d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,7 +18,7 @@ Core and Builtins
- Issue #4211: The __path__ attribute of frozen packages is now a list instead
of a string as required by PEP 302.
-- Issue #3727: Fixed poplib
+- Issue #3727: Fixed poplib.
- Issue #3714: Fixed nntplib by using bytes where appropriate.