commit | d968e27581e42874427979c87885997c59af5ba5 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Wed Nov 05 22:48:33 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Wed Nov 05 22:48:33 2008 +0000 |
tree | d6c2030a8e16c15bfd399c9a2a175070a38f47cd | |
parent | 65676e407cd4beecf9ea482ae68926bff8329049 [diff] [blame] |
fix #4211: the __path__ of a frozen package should be a list. Patch by Brett Cannon, review by Christian Heimes.
diff --git a/Misc/NEWS b/Misc/NEWS index e422b38..40acabd 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -15,6 +15,9 @@ 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.