view python/aspects.py @ 694:ebca6d85213a

File "/usr/lib/python3/dist-packages/IPython/config/__init__.py", line 16, in <module> from .application import * File "/usr/lib/python3/dist-packages/IPython/config/application.py", line 31, in <module> from IPython.config.configurable import SingletonConfigurable File "/usr/lib/python3/dist-packages/IPython/config/configurable.py", line 33, in <module> from IPython.utils.text import indent, wrap_paragraphs File "/usr/lib/python3/dist-packages/IPython/utils/text.py", line 28, in <module> from IPython.external.path import path File "/usr/lib/python3/dist-packages/IPython/external/path/__init__.py", line 2, in <module> from path import * File "/home/jhammel/python/path.py", line 25 print root(path) ^
author Jeff Hammel <k0scist@gmail.com>
date Wed, 09 Jul 2014 16:26:49 -0700
parents 2f0baf81372f
children
line wrap: on
line source

class MakePythonLikeJavascript(object):
    def __getattr__(self, name):
        return undefined

class undefined(MakePythonLikeJavascript):
    def __nonzero__(self):
        return False
    def __str__(self):
        return 'undefined'
    __repr__ = __str__
undefined = undefined() # singleton

if __name__ == '__main__':
    foo = MakePythonLikeJavascript()
    foo.bar = 5
    print foo.bar
    print foo.fleem
    print foo.fleem.flarg