[svn r63601] remove dead code.

--HG--
branch : trunk
This commit is contained in:
hpk 2009-04-04 02:35:27 +02:00
parent 4aeb929b3c
commit ec2c167264
1 changed files with 0 additions and 11 deletions

View File

@ -251,14 +251,3 @@ class DSession(Session):
def teardown(self):
""" teardown any resources after a test run. """
self.nodemanager.teardown_nodes()
# debugging function
def dump_picklestate(item):
l = []
while 1:
state = item.__getstate__()
l.append(state)
item = state[-1]
if len(state) != 2:
break
return l