/ Published in: Python
Expand |
Embed | Plain Text
#!/usr/bin/python class A(): """ """ def __init__(self): pass if __name__ == "__main__": a = A()
You need to login to post a comment.
arcturus on 10/26/07
3 people have marked this snippet as a favorite
lukaszkorecki
carlosabargues
danielalexwood
#!/usr/bin/python class A(): """ """ def __init__(self): pass if __name__ == "__main__": a = A()
You need to login to post a comment.