diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-11-05 22:48:33 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-11-05 22:48:33 (GMT) |
commit | d968e27581e42874427979c87885997c59af5ba5 (patch) | |
tree | d6c2030a8e16c15bfd399c9a2a175070a38f47cd /Misc | |
parent | 65676e407cd4beecf9ea482ae68926bff8329049 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |