Skip to content

Instantly share code, notes, and snippets.

@whoeverest
Created April 15, 2021 07:11
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 whoeverest/fa0661ef8d4842050d809670248a26f6 to your computer and use it in GitHub Desktop.
Save whoeverest/fa0661ef8d4842050d809670248a26f6 to your computer and use it in GitHub Desktop.
>>> import dis
>>> def f(): a, b = b, a
...
>>> dis.dis(f)
1 0 LOAD_FAST 0 (b)
2 LOAD_FAST 1 (a)
4 ROT_TWO
6 STORE_FAST 1 (a)
8 STORE_FAST 0 (b)
10 LOAD_CONST 0 (None)
12 RETURN_VALUE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment