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

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

There is a newer version: 2.7.1.1
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 - 2025 Weber Informatics LLC | Privacy Policy