fix python3 issues and add info to changelog

This commit is contained in:
holger krekel
2010-04-27 21:26:35 +02:00
parent b6cdbf46a6
commit bdc3f9bf53
3 changed files with 22 additions and 2 deletions

View File

@@ -252,3 +252,10 @@ class TestPickleChannelFunctional:
channel.waitclose(timeout=2)
def test_explode():
from xdist.mypickle import explode
assert isinstance(explode({}.values()), list)
l = []
assert isinstance(explode(l), list)
assert explode(l) is l