We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5285ae3 commit 956ad23Copy full SHA for 956ad23
2 files changed
.github/workflows/ci.yaml
@@ -542,6 +542,12 @@ jobs:
542
543
- name: build and install
544
run: |
545
+ # these two steps can be removed when
546
+ # https://github.com/nascheme/cpython_sanity/issues/12 and the images
547
+ # are rebuilt
548
+ apt update
549
+ apt install -y llvm
550
+
551
python -m pip install setuptools pytest pytest-run-parallel
552
CFLAGS="-g -O3 -fsanitize=thread" python -m pip install -v .
553
suppressions_free_threading.txt
@@ -50,3 +50,6 @@ race_top:set_tp_bases
50
race_top:type_set_bases_unlocked
51
52
race:partial_vectorcall_fallback
53
54
+# gh-113956: races from simultaneously interning a string
55
+race_top:_Py_SetImmortalUntracked
0 commit comments