mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
9 lines
269 B
Python
9 lines
269 B
Python
import sys
|
|
import unittest
|
|
|
|
|
|
# The code under the debugger_protocol package isn't used
|
|
# by the debugger (it's used by schema-related tools). So we don't need
|
|
# to support Python 2.
|
|
if sys.version_info[0] == 2:
|
|
raise unittest.SkipTest('not tested under Python 2')
|