Skip to content

Commit ae120d5

Browse files
committed
Disable pstats tests also in 3.13 as long as they wait for a new C-API in CPython.
1 parent 27364ef commit ae120d5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

runtests.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -518,10 +518,8 @@ def get_openmp_compiler_flags(language):
518518
'compile.pylong', # PyLongObject changed its structure
519519
'run.longintrepr', # PyLongObject changed its structure
520520
]),
521-
# See https://github.com/python/cpython/issues/104614 - fixed in Py3.12.0b2, remove eventually.
522-
(3,12,0,'beta',1): (operator.eq, lambda x: 'cdef_multiple_inheritance' in x or 'pep442' in x),
523-
# Profiling is broken on Python 3.12
524-
(3,12): ((lambda actual, v3_12: actual[:2]==v3_12), (lambda x: "pstats" in x)),
521+
# Profiling is broken on Python 3.12/3.13alpha
522+
(3,12): (operator.gt, lambda x: "pstats" in x),
525523
}
526524

527525
INCLUDE_DIRS = [ d for d in os.getenv('INCLUDE', '').split(os.pathsep) if d ]

0 commit comments

Comments
 (0)