Created
April 12, 2020 09:29
-
-
Save ionelmc/1e89a9a21191b86ab3444b84ef434b70 to your computer and use it in GitHub Desktop.
This file contains 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
b = 1 | |
def foo(): | |
b = 2 | |
class foo: | |
a = b | |
b = 3 | |
return foo() | |
foo().a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1 :-)