ported old-style classes to new-style

This commit is contained in:
tpltnt
2019-05-15 08:17:44 +02:00
parent b55034853c
commit c8f11dc2d3
84 changed files with 183 additions and 149 deletions

View File

@ -29,11 +29,11 @@ class ContainerNode(object):
def is_mutable(self):
return True
class FakeNode:
class FakeNode(object):
def raise_error(self):
return None
class FakeNodeMaker:
class FakeNodeMaker(object):
def create_from_cap(self, writecap, readcap=None, deep_immutable=False, name=''):
return FakeNode()