[pypy-svn] pypy default: I think that "SKIP:" is supposed to be printed to stderr, not stdout.

arigo commits-noreply at bitbucket.org
Sat Apr 16 11:09:31 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r43393:7bcedc5f2e61
Date: 2011-04-16 11:08 +0200
http://bitbucket.org/pypy/pypy/changeset/7bcedc5f2e61/

Log:	I think that "SKIP:" is supposed to be printed to stderr, not
	stdout.

diff --git a/pypy/module/pypyjit/test_pypy_c/test_pypy_c_new.py b/pypy/module/pypyjit/test_pypy_c/test_pypy_c_new.py
--- a/pypy/module/pypyjit/test_pypy_c/test_pypy_c_new.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_pypy_c_new.py
@@ -1498,7 +1498,7 @@
             try:
                 from _ffi import CDLL, types
             except ImportError:
-                sys.stdout.write('SKIP: cannot import _ffi')
+                sys.stderr.write('SKIP: cannot import _ffi\n')
                 return 0
 
             libm = CDLL(libm_name)


More information about the Pypy-commit mailing list