diff options
author | Brett Cannon <brett@python.org> | 2013-12-13 16:43:10 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-12-13 16:43:10 (GMT) |
commit | ca7ab7c7f10f27d8e3df3281c78180802d767358 (patch) | |
tree | 14e032c9b6677d526be2f3f2375e4a9f02ec7ce3 /Misc | |
parent | 774b2e0af23757e73e7c223c56841cb031178a8c (diff) | |
download | cpython-ca7ab7c7f10f27d8e3df3281c78180802d767358.zip cpython-ca7ab7c7f10f27d8e3df3281c78180802d767358.tar.gz cpython-ca7ab7c7f10f27d8e3df3281c78180802d767358.tar.bz2 |
Issue #19946: Raise ImportError when the main module cannot be found
by multiprocessing.spawn (before it was raising an AttributeError).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -44,6 +44,9 @@ Core and Builtins Library ------- +- Issue #19946: multiprocessing.spawn now raises ImportError when the module to + be used as the main module cannot be imported. + - Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. - Issue #19063: if a Charset's body_encoding was set to None, the email |