diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-04-29 13:08:14 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-04-29 13:08:14 (GMT) |
commit | 7d110042c5a2b27ffd0b3ae25dc7722f2f8bc5c5 (patch) | |
tree | 564d77b977a6af962a1be77073327466c42ecd59 /Misc | |
parent | 775ccdf1fc87922f8fe0d46a3e8cd5f0a6a54218 (diff) | |
download | cpython-7d110042c5a2b27ffd0b3ae25dc7722f2f8bc5c5.zip cpython-7d110042c5a2b27ffd0b3ae25dc7722f2f8bc5c5.tar.gz cpython-7d110042c5a2b27ffd0b3ae25dc7722f2f8bc5c5.tar.bz2 |
raise an ImportError (rather than fatal) when __import__ is not found in __builtins__ (closes #17867)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,8 @@ What's New in Python 3.3.2? Core and Builtins ----------------- +- Issue #17867: Raise an ImportError if __import__ is not found in __builtins__. + - Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3, such as was shipped with Centos 5 and Mac OS X 10.4. |