Skip to content
Snippets Groups Projects
Commit fda7ec505dc5 authored by Manuel Jacob's avatar Manuel Jacob
Browse files

demandimport: eagerly load msvcrt module on PyPy

parent a31245a984f2
No related branches found
No related tags found
2 merge requests!156branching: merge stable into default,!142demandimport: eagerly load msvcrt module on PyPy
......@@ -66,6 +66,9 @@
if _pypy:
# _ctypes.pointer is shadowed by "from ... import pointer" (PyPy 5)
IGNORES.add('_ctypes.pointer')
# pure Python module on PyPy, must be loaded to raise ModuleNotFoundError
# on non-Windows platforms
IGNORES.add('msvcrt')
demandimport.init(IGNORES)
......
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