[pypy-svn] r58780 - pypy/branch/2.5-merge/lib-python/modified-2.5.2/test

arigo at codespeak.net arigo at codespeak.net
Tue Oct 7 18:08:16 CEST 2008


Author: arigo
Date: Tue Oct  7 18:08:15 2008
New Revision: 58780

Modified:
   pypy/branch/2.5-merge/lib-python/modified-2.5.2/test/test_support.py
Log:
Fix the skip message (which was copy-pasted from a few pages earlier in
the same file).


Modified: pypy/branch/2.5-merge/lib-python/modified-2.5.2/test/test_support.py
==============================================================================
--- pypy/branch/2.5-merge/lib-python/modified-2.5.2/test/test_support.py	(original)
+++ pypy/branch/2.5-merge/lib-python/modified-2.5.2/test/test_support.py	Tue Oct  7 18:08:15 2008
@@ -541,8 +541,8 @@
     else:
         def _skip_check_impl_detail(*args, **kwds):
             if verbose:
-                sys.stderr.write("Skipping %s because of memory "
-                                 "constraint\n" % (f.__name__,))
+                sys.stderr.write("Skipping %s checking CPython-specific "
+                                 "implementation details\n" % (f.__name__,))
             return
         return skip_check_impl_detail
 



More information about the Pypy-commit mailing list