fix: match new extension discovery with changes to classic discovery (#2640)

* fix: match new extension discovery with changes to classic discovery

Followup to #2638 - this was fixed in 2.6.0, but only for classic Python

* fix: followup to avoid warnings
This commit is contained in:
Henry Schreiner
2020-11-05 14:37:11 -05:00
committed by GitHub
parent 6d4854a501
commit 3e4d54bc01
2 changed files with 4 additions and 3 deletions

View File

@@ -115,7 +115,7 @@ print('.'.join(str(v) for v in sys.version_info));
print(sys.prefix);
print(s.get_python_inc(plat_specific=True));
print(s.get_python_lib(plat_specific=True));
print(s.get_config_var('SO') or s.get_config_var('EXT_SUFFIX'));
print(s.get_config_var('EXT_SUFFIX') or s.get_config_var('SO'));
print(hasattr(sys, 'gettotalrefcount')+0);
print(struct.calcsize('@P'));
print(s.get_config_var('LDVERSION') or s.get_config_var('VERSION'));