All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Lib.test.bugs.pr112.py Maven / Gradle / Ivy

Go to download

Jython is an implementation of the high-level, dynamic, object-oriented language Python written in 100% Pure Java, and seamlessly integrated with the Java platform. It thus allows you to run Python on any Java platform.

There is a newer version: 2.7.4
Show newest version
# test for PR#112 -- functions should not have __module__ attributes

def f():
    pass

if hasattr(f, '__module__'):
    print 'functions should not have __module__ attributes'

# but make sure classes still do have __module__ attributes
class F:
    pass

if not hasattr(F, '__module__'):
    print 'classes should still have __module__ attributes'




© 2015 - 2024 Weber Informatics LLC | Privacy Policy