remove unused import, fix failing test mode
--HG-- branch : trunk
This commit is contained in:
parent
f6765f4c8b
commit
9620583e82
|
@ -203,7 +203,7 @@ class DSession(Session):
|
|||
tosend[:] = tosend[room:] # update inplace
|
||||
if tosend:
|
||||
# we have some left, give it to the main loop
|
||||
self.queueevent(pytest_rescheduleitems, tosend)
|
||||
self.queueevent("pytest_rescheduleitems", items=tosend)
|
||||
|
||||
def senditems_load(self, tosend):
|
||||
if not tosend:
|
||||
|
|
|
@ -53,8 +53,6 @@ def basic_collect_report(collector):
|
|||
excinfo = py.code.ExceptionInfo()
|
||||
return CollectReport(collector, res, excinfo, outerr)
|
||||
|
||||
from cPickle import Pickler, Unpickler
|
||||
|
||||
def forked_run_report(item, pdb=None):
|
||||
EXITSTATUS_TESTEXIT = 4
|
||||
from py.__.test.dist.mypickle import ImmutablePickler
|
||||
|
|
Loading…
Reference in New Issue