From 95cd17442d9d9d0d161fb49fcb1955b9a35af547 Mon Sep 17 00:00:00 2001 From: Carl Friedrich Bolz-Tereick Date: Fri, 26 Feb 2021 21:03:03 +0100 Subject: remove pdb --- rpython/rlib/test/test_rstring.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/rpython/rlib/test/test_rstring.py b/rpython/rlib/test/test_rstring.py index a2ce14e0a8..5fda0275e2 100644 --- a/rpython/rlib/test/test_rstring.py +++ b/rpython/rlib/test/test_rstring.py @@ -336,7 +336,5 @@ def test_hypothesis_search(needle, pieces, by, maxcount): input = needle.join(pieces) assume(len(input) > 0) - if needle == '' and pieces == [] and by == '0' and maxcount == 1: - import pdb; pdb.set_trace() res = replace(input, needle, by, maxcount) assert res == input.replace(needle, by, maxcount) -- cgit v1.2.3-65-gdbad