[pypy-svn] r72860 - pypy/branch/cpython-extension/pypy/interpreter/test

xoraxax at codespeak.net xoraxax at codespeak.net
Thu Mar 25 23:15:23 CET 2010


Author: xoraxax
Date: Thu Mar 25 23:15:21 2010
New Revision: 72860

Modified:
   pypy/branch/cpython-extension/pypy/interpreter/test/test_argument.py
Log:
Remove unpack_cpy test.

Modified: pypy/branch/cpython-extension/pypy/interpreter/test/test_argument.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/interpreter/test/test_argument.py	(original)
+++ pypy/branch/cpython-extension/pypy/interpreter/test/test_argument.py	Thu Mar 25 23:15:21 2010
@@ -135,12 +135,6 @@
         assert args1.keywords is args.keywords
         assert args1.keywords_w is args.keywords_w
 
-    def test_unpack_cpy(self):
-        space = DummySpace()
-        args = Arguments(space, ["0"])
-        assert space.eq_w(args.unpack_cpy(), space.newtuple([space.newlist([space.wrap("0")]), space.newdict()]))
-        assert space.eq_w(args.unpack_cpy(1), space.newtuple([space.newlist(), space.newdict()]))
-
     def test_fixedunpacked(self):
         space = DummySpace()
         



More information about the Pypy-commit mailing list