comparison mercurial/demandimport.py @ 31990:3e03a4b9ec8c

windows: add win32com.shell to demandimport ignore list Module 'appdirs' tries to import win32com.shell (and catch ImportError as an indication of failure) to check whether some further functionality should be implemented one or another way [1]. Of course, demandimport lets it down, so if we want appdirs to work we have to add it to demandimport's ignore list. The reason we want appdirs to work is becuase it is used by setuptools [2] to determine egg cache location. Only fairly recent versions of setuptools depend on this so people don't see this often. [1] https://github.com/ActiveState/appdirs/blob/master/appdirs.py#L560 [2] https://github.com/pypa/setuptools/blob/aae0a928119d2a178882c32bded02270e30d0273/pkg_resources/__init__.py#L1369
author Kostia Balytskyi <ikostia@fb.com>
date Fri, 14 Apr 2017 12:34:26 -0700
parents f80d9ddc40f3
children c939fdce0fde
comparison
equal deleted inserted replaced
31989:85a22bc03d58 31990:3e03a4b9ec8c
272 '_imp', 272 '_imp',
273 '_xmlplus', 273 '_xmlplus',
274 'fcntl', 274 'fcntl',
275 'nt', # pathlib2 tests the existence of built-in 'nt' module 275 'nt', # pathlib2 tests the existence of built-in 'nt' module
276 'win32com.gen_py', 276 'win32com.gen_py',
277 'win32com.shell', # 'appdirs' tries to import win32com.shell
277 '_winreg', # 2.7 mimetypes needs immediate ImportError 278 '_winreg', # 2.7 mimetypes needs immediate ImportError
278 'pythoncom', 279 'pythoncom',
279 # imported by tarfile, not available under Windows 280 # imported by tarfile, not available under Windows
280 'pwd', 281 'pwd',
281 'grp', 282 'grp',