mirror of
https://github.com/python/cpython.git
synced 2026-02-05 09:25:35 +00:00
Merged revisions 82850 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82850 | alexander.belopolsky | 2010-07-13 10:50:16 -0400 (Tue, 13 Jul 2010) | 1 line Set sys.modules[name] to None instead of 0 to block module import. ........
This commit is contained in:
parent
7395fcbb3f
commit
0a5d9a29bb
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ def _save_and_block_module(name, orig_modules):
|
|||
orig_modules[name] = sys.modules[name]
|
||||
except KeyError:
|
||||
saved = False
|
||||
sys.modules[name] = 0
|
||||
sys.modules[name] = None
|
||||
return saved
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue