Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ergodicbreak/ce0f1d23961c8d2e1f41512aa850321c to your computer and use it in GitHub Desktop.
Save ergodicbreak/ce0f1d23961c8d2e1f41512aa850321c to your computer and use it in GitHub Desktop.
>>> 3
3
>>> inspect
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
inspect
NameError: name 'inspect' is not defined
>>> import inspect
>>> inspect
<module 'inspect' from 'C:\Python27\lib\inspect.pyc'>
>>> 3
3
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment