New submission from Antoine Pitrou <notifs-re...@pitrou.net>:
On Windows, Python 3.7.6 and 3.8.1: ``` >>> import sysconfig >>> sysconfig.get_config_var('EXT_SUFFIX') '.pyd' >>> from distutils import sysconfig >>> sysconfig.get_config_var('EXT_SUFFIX') '.cp38-win_amd64.pyd' ``` The sysconfig answer is probably wrong (the ABI-qualified extension '.cp38-win_amd64.pyd' should be preferred). ---------- components: Distutils, Library (Lib) messages: 363171 nosy: dstufft, eric.araujo, paul.moore, pitrou, steve.dower, tarek, tim.golden, zach.ware priority: normal severity: normal stage: needs patch status: open title: EXT_SUFFIX inconsistent between sysconfig and distutils.sysconfig (Windows) type: behavior versions: Python 3.7, Python 3.8, Python 3.9 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue39825> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com