Skip to content

Instantly share code, notes, and snippets.

@suzaku
Created October 11, 2012 03:56
Show Gist options
  • Save suzaku/3870068 to your computer and use it in GitHub Desktop.
Save suzaku/3870068 to your computer and use it in GitHub Desktop.
"""This would outputs
x
True
__main__
False
"""
import x
class A: pass
a = A()
print __name__
print isinstance(a, x.A)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment