◐ Shell
clean mode source ↗

Update bisect.py and test_bisect.py from CPython v3.11.2 by MegasKomnenos · Pull Request #4774 · RustPython/RustPython

Expand Up @@ -5,7 +5,7 @@

py_bisect = import_helper.import_fresh_module('bisect', blocked=['_bisect']) c_bisect = import_helper.import_fresh_module('bisect', fresh=['bisect']) c_bisect = import_helper.import_fresh_module('bisect', fresh=['_bisect'])
class Range(object): """A trivial range()-like object that has an insert() method.""" Expand Down Expand Up @@ -257,6 +257,12 @@ def test_insort(self): target )
def test_insort_keynotNone(self): x = [] y = {"a": 2, "b": 1} for f in (self.module.insort_left, self.module.insort_right): self.assertRaises(TypeError, f, x, y, key = "b")
class TestBisectPython(TestBisect, unittest.TestCase): module = py_bisect
Expand Down