mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
6 lines
115 B
Python
6 lines
115 B
Python
import sys
|
|
import unittest
|
|
|
|
|
|
if sys.version_info[0] == 2:
|
|
raise unittest.SkipTest('not tested under Python 2')
|