We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cffd974 commit 7da55d7Copy full SHA for 7da55d7
2 files changed
Src/IronPythonTest/Cases/CPythonCasesManifest.ini
@@ -1215,6 +1215,9 @@ Ignore=true # AssertionError: 5 != 4
1215
[CPython.test_grammar]
1216
Ignore=true # blocked by https://github.com/IronLanguages/ironpython3/issues/98
1217
1218
+[CPython.test_grp]
1219
+Ignore=true # 2 failures
1220
+
1221
[CPython.test_gzip]
1222
IsolationLevel=PROCESS # https://github.com/IronLanguages/ironpython3/issues/1440
1223
Src/StdLib/Lib/sysconfig.py
@@ -347,6 +347,7 @@ def get_makefile_filename():
347
348
349
def _get_sysconfigdata_name():
350
+ if sys.implementation.name == "ironpython": return "_sysconfigdata"
351
return os.environ.get('_PYTHON_SYSCONFIGDATA_NAME',
352
'_sysconfigdata_{abi}_{platform}_{multiarch}'.format(
353
abi=sys.abiflags,
0 commit comments