We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e35c29 commit ae64318Copy full SHA for ae64318
Lib/test/test_pdb.py
@@ -3242,7 +3242,9 @@ class PdbTestReadline(unittest.TestCase):
3242
def setUpClass():
3243
# Ensure that the readline module is loaded
3244
# If this fails, the test is skipped because SkipTest will be raised
3245
- import_module('readline')
+ readline = import_module('readline')
3246
+ if readline.__doc__ and "libedit" in readline.__doc__:
3247
+ raise unittest.SkipTest("libedit readline is not supported for pdb")
3248
3249
def test_basic_completion(self):
3250
script = textwrap.dedent("""
0 commit comments