Advertisement
Guest User

Untitled

a guest
Jul 30th, 2011
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. Python 2.7.2 (default, Jun 28 2011, 16:19:38)
  2. [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.9)] on darwin
  3. Type "help", "copyright", "credits" or "license" for more information.
  4. >>> class Foo(object):
  5. ...     def bar(self, x):
  6. ...         def baz(y):
  7. ...             print self
  8. ...         return baz(5)
  9. ...
  10. >>> Foo().bar(3)
  11. <__main__.Foo object at 0x10045cc90>
  12. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement