Skip to content
Snippets Groups Projects
Commit f5b2b358 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

demandimport: add _imp to ignore list

Mozilla is seeing an issue with demand importing of _imp
failing in pkg_resources/__init__.py:fixup_namespace_packages.
It strangely only reproduces when using a modern version of
setuptools/pip in certain scenarios. Adding _imp to the demand import
ignore list seems to make the problem go away.
parent b966e35a
No related branches found
No related tags found
No related merge requests found
...@@ -230,6 +230,8 @@ ...@@ -230,6 +230,8 @@
ignore = [ ignore = [
'__future__', '__future__',
'_hashlib', '_hashlib',
# ImportError during pkg_resources/__init__.py:fixup_namespace_package
'_imp',
'_xmlplus', '_xmlplus',
'fcntl', 'fcntl',
'win32com.gen_py', 'win32com.gen_py',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment