Created
November 13, 2015 23:00
-
-
Save jan-matejka/669f9f204ee97b46ae86 to your computer and use it in GitHub Desktop.
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
| from x import * | |
| import x | |
| x.y == y # True | |
| def y(): return Bollox | |
| x.y == y # True | |
| x.y() == Bollox # True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment