[Jython-checkins] jython: Fix is_jython call.

frank.wierzbicki jython-checkins at python.org
Mon Feb 4 22:53:38 CET 2013


http://hg.python.org/jython/rev/1f960ccdad04
changeset:   6989:1f960ccdad04
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Mon Feb 04 12:02:05 2013 -0800
summary:
  Fix is_jython call.

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


diff --git a/Lib/test/lock_tests.py b/Lib/test/lock_tests.py
--- a/Lib/test/lock_tests.py
+++ b/Lib/test/lock_tests.py
@@ -330,7 +330,7 @@
         cond = self.condtype()
         self.assertRaises(RuntimeError, cond.wait)
 
-    @unittest.skipIf(is_jython, "FIXME: not working properly on Jython")
+    @unittest.skipIf(support.is_jython, "FIXME: not working properly on Jython")
     def test_unacquired_notify(self):
         cond = self.condtype()
         self.assertRaises(RuntimeError, cond.notify)

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


More information about the Jython-checkins mailing list