[Jython-checkins] jython: from:

frank.wierzbicki jython-checkins at python.org
Wed Apr 11 20:39:33 CEST 2012


http://hg.python.org/jython/rev/813254047207
changeset:   6567:813254047207
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Wed Apr 11 11:38:37 2012 -0700
summary:
  from:
http://hg.python.org/cpython/Lib/test/test_popen.py@22db03646d9b

files:
  Lib/test/test_popen.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_popen.py b/Lib/test/test_popen.py
--- a/Lib/test/test_popen.py
+++ b/Lib/test/test_popen.py
@@ -40,7 +40,7 @@
 
     def test_return_code(self):
         self.assertEqual(os.popen("exit 0").close(), None)
-        if os.name == 'nt' or test_support.is_jython:
+        if os.name == 'nt':
             self.assertEqual(os.popen("exit 42").close(), 42)
         else:
             self.assertEqual(os.popen("exit 42").close(), 42 << 8)

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list