We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14291fa commit 79b8a32Copy full SHA for 79b8a32
Lib/test/test_pdb.py
@@ -4848,6 +4848,8 @@ def f():
4848
4849
self.assertIn(b'I love Python', output)
4850
4851
+ @unittest.skipIf(sys.platform.startswith('freebsd'),
4852
+ '\\x08 is not interpreted as backspace on FreeBSD')
4853
def test_multiline_auto_indent(self):
4854
script = textwrap.dedent("""
4855
import pdb; pdb.Pdb().set_trace()
@@ -4886,6 +4888,8 @@ def test_multiline_completion(self):
4886
4888
4887
4889
self.assertIn(b'42', output)
4890
4891
4892
4893
def test_multiline_indent_completion(self):
4894
4895
0 commit comments