Skip to content

Instantly share code, notes, and snippets.

@bukzor
Created September 19, 2012 18:56
Show Gist options
  • Select an option

  • Save bukzor/3751495 to your computer and use it in GitHub Desktop.

Select an option

Save bukzor/3751495 to your computer and use it in GitHub Desktop.
>>> import sys
>>> sys.modules['math']
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
KeyError: 'math'
>>> import math
>>> sys.modules['math']
<module 'math' (built-in)>
>>> del sys.modules['math']
>>> math
<module 'math' (built-in)>
>>> del math
>>> math
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'math' is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment