[pypy-svn] r16795 - in pypy/release/0.7.x/lib-python: . modified-2.4.1
ludal at codespeak.net
ludal at codespeak.net
Sat Aug 27 17:57:07 CEST 2005
Author: ludal
Date: Sat Aug 27 17:57:05 2005
New Revision: 16795
Added:
pypy/release/0.7.x/lib-python/modified-2.4.1/pprint.py
- copied, changed from r16754, pypy/release/0.7.x/lib-python/2.4.1/pprint.py
Modified:
pypy/release/0.7.x/lib-python/conftest.py
pypy/release/0.7.x/lib-python/failure_list.txt
Log:
- update failure_list.txt
- fix the pprint module so it works with pypy (pypy returns new method objects each time we
do a getattr and pprint checks for identity instead of equality to detect if we overrode
one of the base objects' (dict,list,tuple) __repr__ method
- move the test back to core tests since it works and pprint is widely used
Modified: pypy/release/0.7.x/lib-python/conftest.py
==============================================================================
--- pypy/release/0.7.x/lib-python/conftest.py (original)
+++ pypy/release/0.7.x/lib-python/conftest.py Sat Aug 27 17:57:05 2005
@@ -613,7 +613,7 @@
RegrTest('test_posix.py', enabled=True),
RegrTest('test_posixpath.py', enabled=True),
RegrTest('test_pow.py', enabled=True, core=True),
- RegrTest('test_pprint.py', enabled=True),
+ RegrTest('test_pprint.py', enabled=True, core=True),
RegrTest('test_profile.py', enabled=True),
RegrTest('test_profilehooks.py', enabled=True, core=True),
RegrTest('test_pty.py', enabled=False),
Modified: pypy/release/0.7.x/lib-python/failure_list.txt
==============================================================================
--- pypy/release/0.7.x/lib-python/failure_list.txt (original)
+++ pypy/release/0.7.x/lib-python/failure_list.txt Sat Aug 27 17:57:05 2005
@@ -1,6 +1,9 @@
test_cpickle
has been re-run, still failing
+ ran test_cpickle on c-python using the pickle module instead of cpickle
+ pickle.py fails on all test_recursion but passes the test_nonrecursive
+ this test has a 60 level deep structure
test_descr
cannot easily complete this; after another quick review, the failures
More information about the Pypy-commit
mailing list