Path: blob/master/venv/Lib/site-packages/setuptools/command/bdist_wininst.py
811 views
import distutils.command.bdist_wininst as orig1import warnings23from setuptools import SetuptoolsDeprecationWarning456class bdist_wininst(orig.bdist_wininst):7def reinitialize_command(self, command, reinit_subcommands=0):8"""9Supplement reinitialize_command to work around10http://bugs.python.org/issue2081911"""12cmd = self.distribution.reinitialize_command(13command, reinit_subcommands)14if command in ('install', 'install_lib'):15cmd.install_lib = None16return cmd1718def run(self):19warnings.warn(20"bdist_wininst is deprecated and will be removed in a future "21"version. Use bdist_wheel (wheel packages) instead.",22SetuptoolsDeprecationWarning23)2425self._is_running = True26try:27orig.bdist_wininst.run(self)28finally:29self._is_running = False303132