Your IP : 172.28.240.42


Current Path : /usr/lib/python2.7/dist-packages/twisted/test/
Upload File :
Current File : //usr/lib/python2.7/dist-packages/twisted/test/myrebuilder1.py

class A:
    def a(self):
        return 'a'
try:
    object
except NameError:
    pass
else:
    class B(object, A):
        def b(self):
            return 'b'
class Inherit(A):
    def a(self):
        return 'c'