direct: Fix some NameErrors

Squashed merge of GitHub PR #273
This commit is contained in:
Michael Wass 2018-03-05 20:32:27 -05:00 committed by Sam Edwards
parent 1b1c76b2e8
commit 89799bc024
2 changed files with 0 additions and 10 deletions

View File

@ -342,7 +342,6 @@ class MetaInterval(CMetaInterval):
# with all of their associated Python callbacks:
def setManager(self, manager):
rogerroger
self.__manager = manager
CMetaInterval.setManager(self, manager)

View File

@ -110,15 +110,6 @@ class ObjectPool:
print('TYPE: %s, %s objects' % (repr(typ), len(self._type2objs[typ])))
print(getNumberedTypedSortedString(self._type2objs[typ]))
def containerLenStr(self):
s = 'Object Pool: Container Lengths'
s += '\n=============================='
lengths = list(self._len2obj.keys())
lengths.sort()
lengths.reverse()
for count in counts:
pass
def printReferrers(self, numEach=3):
"""referrers of the first few of each type of object"""
counts = list(set(self._count2types.keys()))