Skip to content

Instantly share code, notes, and snippets.

@keitheis
Created November 1, 2012 04:17
Show Gist options
  • Save keitheis/3991683 to your computer and use it in GitHub Desktop.
Save keitheis/3991683 to your computer and use it in GitHub Desktop.
print_inner_class.py
class Out(object):
o = 2
class In(object):
i = 1
def main():
o = Out()
print o.In.i
# 1
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment