##// END OF EJS Templates
demandimport: eagerly load msvcrt module on PyPy
Manuel Jacob -
r50167:fda7ec50 stable
parent child Browse files
Show More
@@ -66,6 +66,9 b' IGNORES = {'
66 if _pypy:
66 if _pypy:
67 # _ctypes.pointer is shadowed by "from ... import pointer" (PyPy 5)
67 # _ctypes.pointer is shadowed by "from ... import pointer" (PyPy 5)
68 IGNORES.add('_ctypes.pointer')
68 IGNORES.add('_ctypes.pointer')
69 # pure Python module on PyPy, must be loaded to raise ModuleNotFoundError
70 # on non-Windows platforms
71 IGNORES.add('msvcrt')
69
72
70 demandimport.init(IGNORES)
73 demandimport.init(IGNORES)
71
74
General Comments 0
You need to be logged in to leave comments. Login now