Created
September 25, 2014 20:38
-
-
Save sirpengi/d5f7c06fca40010e470e to your computer and use it in GitHub Desktop.
for saml
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
import time | |
def cry(): | |
print "T.T;" | |
time.sleep(1) | |
T = type('T', tuple(), {'__getattr__': lambda s, k: cry()})() | |
lonely = True | |
while lonely: | |
T.T; cry |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment