diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-05-07 19:41:59 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-05-07 19:41:59 (GMT) |
commit | 6efa50a384f61155cd5315cd32f0f8775fe124c5 (patch) | |
tree | 2cc831c060e953beb452ec4b33e199e2c06f25d9 /Misc | |
parent | 943cab2fec8e7fb3232e72d9f1ca6535674e746a (diff) | |
download | cpython-6efa50a384f61155cd5315cd32f0f8775fe124c5.zip cpython-6efa50a384f61155cd5315cd32f0f8775fe124c5.tar.gz cpython-6efa50a384f61155cd5315cd32f0f8775fe124c5.tar.bz2 |
Issue #14583: Fix importlib bug when a package's __init__.py would first import one of its modules then raise an error.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -20,6 +20,9 @@ Core and Builtins Library ------- +- Issue #14583: Fix importlib bug when a package's __init__.py would first + import one of its modules then raise an error. + - Issue #14741: Fix missing support for Ellipsis ('...') in parser module. - Issue #14697: Fix missing support for set displays and set comprehensions in |