Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r63616:e20e8b97f1af
Date: 2013-04-25 12:19 -0700
http://bitbucket.org/pypy/pypy/changeset/e20e8b97f1af/

Log:    another windows deadlock, skip for now

diff --git a/lib-python/3/test/json_tests/test_recursion.py 
b/lib-python/3/test/json_tests/test_recursion.py
--- a/lib-python/3/test/json_tests/test_recursion.py
+++ b/lib-python/3/test/json_tests/test_recursion.py
@@ -1,3 +1,6 @@
+import sys
+import unittest
+from test import support
 from test.json_tests import PyTest, CTest
 
 
@@ -75,6 +78,9 @@
         with self.assertRaises(RuntimeError):
             self.loads('[' * 100000 + '1' + ']' * 100000)
 
+    @unittest.skipIf(support.check_impl_detail(pypy=True) and
+                     sys.platform == 'win32',
+                     "XXX: https://bugs.pypy.org/issue1461";)
     def test_highly_nested_objects_encoding(self):
         # See #12051
         l, d = [], {}
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to