summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-11-05 22:48:33 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-11-05 22:48:33 (GMT)
commitd968e27581e42874427979c87885997c59af5ba5 (patch)
treed6c2030a8e16c15bfd399c9a2a175070a38f47cd /Misc
parent65676e407cd4beecf9ea482ae68926bff8329049 (diff)
downloadcpython-d968e27581e42874427979c87885997c59af5ba5.zip
cpython-d968e27581e42874427979c87885997c59af5ba5.tar.gz
cpython-d968e27581e42874427979c87885997c59af5ba5.tar.bz2
fix #4211: the __path__ of a frozen package should be a list.
Patch by Brett Cannon, review by Christian Heimes.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e422b38..40acabd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,9 @@ What's New in Python 3.0 beta 5
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 #3714: Fixed nntplib by using bytes where appropriate.