mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Mark bdist_msi to be Windows-only on python2 (#6768)
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
from distutils.cmd import Command
|
||||
import sys
|
||||
|
||||
class bdist_msi(Command):
|
||||
def initialize_options(self) -> None: ...
|
||||
def finalize_options(self) -> None: ...
|
||||
def run(self) -> None: ...
|
||||
if sys.platform == "win32":
|
||||
from distutils.cmd import Command
|
||||
class bdist_msi(Command):
|
||||
def initialize_options(self) -> None: ...
|
||||
def finalize_options(self) -> None: ...
|
||||
def run(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user