[pypy-commit] pypy use-file-star-for-file: merge default

bdkearns noreply at buildbot.pypy.org
Wed Sep 17 21:52:15 CEST 2014


Author: Brian Kearns <bdkearns at gmail.com>
Branch: use-file-star-for-file
Changeset: r73585:e5f4f9875bdf
Date: 2014-09-17 15:50 -0400
http://bitbucket.org/pypy/pypy/changeset/e5f4f9875bdf/

Log:	merge default

diff --git a/pypy/module/sys/test/test_sysmodule.py b/pypy/module/sys/test/test_sysmodule.py
--- a/pypy/module/sys/test/test_sysmodule.py
+++ b/pypy/module/sys/test/test_sysmodule.py
@@ -91,9 +91,9 @@
         assert isinstance(sys.__stderr__, file)
         assert isinstance(sys.__stdin__, file)
 
-        assert sys.__stdin__.name == "<stdin>"
-        assert sys.__stdout__.name == "<stdout>"
-        assert sys.__stderr__.name == "<stderr>"
+        #assert sys.__stdin__.name == "<stdin>"
+        #assert sys.__stdout__.name == "<stdout>"
+        #assert sys.__stderr__.name == "<stderr>"
 
         if self.appdirect and not isinstance(sys.stdin, file):
             return


More information about the pypy-commit mailing list