[pypy-svn] r59156 - pypy/trunk/lib-python/modified-2.5.2/test

iko at codespeak.net iko at codespeak.net
Thu Oct 16 22:02:58 CEST 2008


Author: iko
Date: Thu Oct 16 22:02:57 2008
New Revision: 59156

Modified:
   pypy/trunk/lib-python/modified-2.5.2/test/list_tests.py
Log:
__len__ optimisation of the list constructor is an implementation detail



Modified: pypy/trunk/lib-python/modified-2.5.2/test/list_tests.py
==============================================================================
--- pypy/trunk/lib-python/modified-2.5.2/test/list_tests.py	(original)
+++ pypy/trunk/lib-python/modified-2.5.2/test/list_tests.py	Thu Oct 16 22:02:57 2008
@@ -513,6 +513,7 @@
         a[::2] = tuple(range(5))
         self.assertEqual(a, self.type2test([0, 1, 1, 3, 2, 5, 3, 7, 4, 9]))
 
+    @impl_detail
     def test_constructor_exception_handling(self):
         # Bug #1242657
         class F(object):



More information about the Pypy-commit mailing list