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.
2 parents 8ee557f + d049b35 commit 2bb8d93Copy full SHA for 2bb8d93
testing/test_pdb.py
@@ -853,7 +853,7 @@ def test_supports_breakpoint_module_global(self):
853
Test that supports breakpoint global marks on Python 3.7+ and not on
854
CPython 3.5, 2.7
855
"""
856
- if sys.version_info.major == 3 and sys.version_info.minor >= 7:
+ if sys.version_info >= (3, 7):
857
assert SUPPORTS_BREAKPOINT_BUILTIN is True
858
if sys.version_info.major == 3 and sys.version_info.minor == 5:
859
assert SUPPORTS_BREAKPOINT_BUILTIN is False
0 commit comments