| commit | ca9dbc7d880ac6e5e1df3219e34670b18998a346 | [log] [tgz] |
|---|---|---|
| author | Victor Stinner <victor.stinner@gmail.com> | Sat Mar 26 01:04:37 2016 +0100 |
| committer | Victor Stinner <victor.stinner@gmail.com> | Sat Mar 26 01:04:37 2016 +0100 |
| tree | 8a62e3503de9f05648ba0fe6b3bea632cbcdae3b | |
| parent | 92c8dce98550b3a3130bda28c38f192f1f49dba5 [diff] |
makeopcodetargets.py: we need to import Lib/opcode.py Issue #20021: use importlib.machinery to import Lib/opcode.py and not an opcode module coming from somewhere else. makeopcodetargets.py is part of the Python build process and it is run by an external Python program, not the built Python program. Patch written by Serhiy Storchaka.