equal
deleted
inserted
replaced
18 Attribute = zi.Attribute |
18 Attribute = zi.Attribute |
19 Interface = zi.Interface |
19 Interface = zi.Interface |
20 implementer = zi.implementer |
20 implementer = zi.implementer |
21 else: |
21 else: |
22 |
22 |
23 class Attribute(object): |
23 class Attribute: |
24 def __init__(self, __name__, __doc__=b''): |
24 def __init__(self, __name__, __doc__=b''): |
25 pass |
25 pass |
26 |
26 |
27 class Interface(object): |
27 class Interface: |
28 def __init__( |
28 def __init__( |
29 self, name, bases=(), attrs=None, __doc__=None, __module__=None |
29 self, name, bases=(), attrs=None, __doc__=None, __module__=None |
30 ): |
30 ): |
31 pass |
31 pass |
32 |
32 |