Created
May 1, 2018 08:36
-
-
Save cleac/a242b78f49cbf9a29d52d1fe27228ed4 to your computer and use it in GitHub Desktop.
"import dis" article gist 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> 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