Update pkg_resources to package from setuptools 40.6.3

This commit is contained in:
Labrys of Knossos 2018-12-15 03:44:59 -05:00
commit 7b7313c1d5
95 changed files with 32714 additions and 1044 deletions

View file

@ -0,0 +1,21 @@
import distutils.command.bdist_wininst as orig
class bdist_wininst(orig.bdist_wininst):
def reinitialize_command(self, command, reinit_subcommands=0):
"""
Supplement reinitialize_command to work around
http://bugs.python.org/issue20819
"""
cmd = self.distribution.reinitialize_command(
command, reinit_subcommands)
if command in ('install', 'install_lib'):
cmd.install_lib = None
return cmd
def run(self):
self._is_running = True
try:
orig.bdist_wininst.run(self)
finally:
self._is_running = False