Skip to content

Instantly share code, notes, and snippets.

@cleac
Created May 1, 2018 08:36
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 cleac/a242b78f49cbf9a29d52d1fe27228ed4 to your computer and use it in GitHub Desktop.
Save cleac/a242b78f49cbf9a29d52d1fe27228ed4 to your computer and use it in GitHub Desktop.
"import dis" article gist 2
>>> def t():
... print 1
...
>>> dis.dis(t)
2 0 LOAD_CONST 1 (1)
3 PRINT_ITEM
4 PRINT_NEWLINE
5 LOAD_CONST 0 (None)
8 RETURN_VALUE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment