File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class IWideInheritance(*ifaces):
21
21
"""
22
22
23
23
24
- class WideInheritance ( object ) :
24
+ class WideInheritance :
25
25
pass
26
26
27
27
@@ -41,23 +41,23 @@ def make_deep_inheritance():
41
41
deep_ifaces = make_deep_inheritance ()
42
42
43
43
44
- class DeepestInheritance ( object ) :
44
+ class DeepestInheritance :
45
45
pass
46
46
47
47
48
48
classImplements (DeepestInheritance , deep_ifaces [- 1 ])
49
49
50
50
51
- class ImplementsNothing ( object ) :
51
+ class ImplementsNothing :
52
52
pass
53
53
54
54
55
- class HasConformReturnNone ( object ) :
55
+ class HasConformReturnNone :
56
56
def __conform__ (self , iface ):
57
57
return None
58
58
59
59
60
- class HasConformReturnObject ( object ) :
60
+ class HasConformReturnObject :
61
61
def __conform__ (self , iface ):
62
62
return self
63
63
Original file line number Diff line number Diff line change 1
- # -*- coding: utf-8 -*-
2
1
#
3
2
# zope.interface documentation build configuration file, created by
4
3
# sphinx-quickstart on Mon Mar 26 16:31:31 2012.
You can’t perform that action at this time.
0 commit comments