[pypy-svn] r59555 - pypy/trunk/lib-python/modified-2.5.2/test
arigo at codespeak.net
arigo at codespeak.net
Thu Oct 30 13:15:36 CET 2008
Author: arigo
Date: Thu Oct 30 13:15:36 2008
New Revision: 59555
Modified:
pypy/trunk/lib-python/modified-2.5.2/test/test_descr.py
Log:
The whole test is an implementation detail, really, with
such a print at the beginning.
Modified: pypy/trunk/lib-python/modified-2.5.2/test/test_descr.py
==============================================================================
--- pypy/trunk/lib-python/modified-2.5.2/test/test_descr.py (original)
+++ pypy/trunk/lib-python/modified-2.5.2/test/test_descr.py Thu Oct 30 13:15:36 2008
@@ -1,7 +1,7 @@
# Test enhancements related to descriptors and new-style classes
from test.test_support import verify, vereq, verbose, TestFailed, TESTFN, get_original_stdout
-from test.test_support import check_impl_detail, gc_collect
+from test.test_support import check_impl_detail, impl_detail, gc_collect
from copy import deepcopy
import warnings
import types
@@ -4006,6 +4006,7 @@
__metaclass__ = M
veris(type(C.__dict__), type(B.__dict__))
+ at impl_detail
def meth_class_get():
# Full coverage of descrobject.c::classmethod_get()
if verbose:
More information about the Pypy-commit
mailing list