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 14f7f02 commit 3407e14Copy full SHA for 3407e14
Lib/test/test_cmd_line.py
@@ -65,7 +65,7 @@ def test_help_env(self):
65
def test_help_xoptions(self):
66
out = self.verify_valid_flag('--help-xoptions')
67
self.assertIn(b'-X dev', out)
68
- options = re.findall(b'^-X (\\w+)', out, re.MULTILINE)
+ options = re.findall(rb'^-X (\w+)', out, re.MULTILINE)
69
self.assertEqual(options, sorted(options),
70
"options should be sorted alphabetically")
71
0 commit comments