Submitter | Augie Fackler |
---|---|
Date | Aug. 23, 2017, 2:55 p.m. |
Message ID | <5d6c18ca9740c5d3ded1.1503500107@imladris.local> |
Download | mbox | patch |
Permalink | /patch/23237/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/contrib/import-checker.py b/contrib/import-checker.py --- a/contrib/import-checker.py +++ b/contrib/import-checker.py @@ -222,6 +222,9 @@ def list_stdlib_modules(): yield m yield '__builtin__' yield 'builtins' # python3 only + yield 'importlib.abc' # python3 only + yield 'importlib.machinery' # python3 only + yield 'importlib.util' # python3 only for m in 'fcntl', 'grp', 'pwd', 'termios': # Unix only yield m for m in 'cPickle', 'datetime': # in Python (not C) on PyPy