commit | 757df6e4cd0578ed86db188a2331a4e83764c42c | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Sun Aug 30 04:00:12 2009 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Sun Aug 30 04:00:12 2009 +0000 |
tree | da38ac18ff70e31b20f5516e8bab29ec99a2a1cd | |
parent | 4d75fc1ce97bd15126442c16faab8931aaa7ade2 [diff] [blame] |
Document the import semantics that if None is found in sys.modules for a module then ImportError is raised.
diff --git a/Misc/NEWS b/Misc/NEWS index ea061a7..5189aae 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -174,6 +174,9 @@ Documenation ------------ +- Document that importing a module that has None in sys.modules triggers an + ImportError. + - Issue #6556: Fixed the Distutils configuration files location explanation for Windows.