|
4 | 4 | from collections import UserList
|
5 | 5 |
|
6 | 6 | py_bisect = support.import_fresh_module('bisect', blocked=['_bisect'])
|
7 |
| -c_bisect = support.import_fresh_module('bisect', fresh=['_bisect']) |
| 7 | +c_bisect = None |
8 | 8 |
|
9 | 9 | class Range(object):
|
10 | 10 | """A trivial range()-like object that has an insert() method."""
|
@@ -202,6 +202,7 @@ def test_keyword_args(self):
|
202 | 202 | class TestBisectPython(TestBisect, unittest.TestCase):
|
203 | 203 | module = py_bisect
|
204 | 204 |
|
| 205 | +@unittest.skip("TODO: RUSTPYTHON, _bisect module") |
205 | 206 | class TestBisectC(TestBisect, unittest.TestCase):
|
206 | 207 | module = c_bisect
|
207 | 208 |
|
@@ -237,6 +238,7 @@ def insert(self, index, item):
|
237 | 238 | class TestInsortPython(TestInsort, unittest.TestCase):
|
238 | 239 | module = py_bisect
|
239 | 240 |
|
| 241 | +@unittest.skip("TODO: RUSTPYTHON, _bisect module") |
240 | 242 | class TestInsortC(TestInsort, unittest.TestCase):
|
241 | 243 | module = c_bisect
|
242 | 244 |
|
@@ -292,6 +294,7 @@ def test_arg_parsing(self):
|
292 | 294 | class TestErrorHandlingPython(TestErrorHandling, unittest.TestCase):
|
293 | 295 | module = py_bisect
|
294 | 296 |
|
| 297 | +@unittest.skip("TODO: RUSTPYTHON, _bisect module") |
295 | 298 | class TestErrorHandlingC(TestErrorHandling, unittest.TestCase):
|
296 | 299 | module = c_bisect
|
297 | 300 |
|
@@ -319,6 +322,7 @@ def test_colors(self):
|
319 | 322 | class TestDocExamplePython(TestDocExample, unittest.TestCase):
|
320 | 323 | module = py_bisect
|
321 | 324 |
|
| 325 | +@unittest.skip("TODO: RUSTPYTHON, _bisect module") |
322 | 326 | class TestDocExampleC(TestDocExample, unittest.TestCase):
|
323 | 327 | module = c_bisect
|
324 | 328 |
|
|
0 commit comments