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 292b40f commit 4f1181fCopy full SHA for 4f1181f
stdlib/2and3/distutils/command/build_py.pyi
@@ -1,6 +1,8 @@
1
# Stubs for distutils.command.bdist_msi
2
3
from ..cmd import Command
4
+import sys
5
-class build_py(Command): ...
6
-class build_py_2to3(Command): ...
+if sys.version_info >= (3,):
7
+ class build_py(Command): ...
8
+ class build_py_2to3(Command): ...
0 commit comments