Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
f25a8de8
Kaydet (Commit)
f25a8de8
authored
Nis 16, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition.
üst
ee429340
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
test_multiprocessing.py
Lib/test/test_multiprocessing.py
+7
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_multiprocessing.py
Dosyayı görüntüle @
f25a8de8
...
@@ -757,7 +757,13 @@ class _TestCondition(BaseTestCase):
...
@@ -757,7 +757,13 @@ class _TestCondition(BaseTestCase):
cond
.
release
()
cond
.
release
()
# check they have all woken
# check they have all woken
time
.
sleep
(
DELTA
)
for
i
in
range
(
10
):
try
:
if
get_value
(
woken
)
==
6
:
break
except
NotImplementedError
:
break
time
.
sleep
(
DELTA
)
self
.
assertReturnsIfImplemented
(
6
,
get_value
,
woken
)
self
.
assertReturnsIfImplemented
(
6
,
get_value
,
woken
)
# check state is not mucked up
# check state is not mucked up
...
...
Misc/NEWS
Dosyayı görüntüle @
f25a8de8
...
@@ -269,6 +269,8 @@ Extensions
...
@@ -269,6 +269,8 @@ Extensions
Tests
Tests
-----
-----
- Issue #11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition.
- Fix possible "file already exists" error when running the tests in parallel.
- Fix possible "file already exists" error when running the tests in parallel.
- Issue #11719: Fix message about unexpected test_msilib skip on non-Windows
- Issue #11719: Fix message about unexpected test_msilib skip on non-Windows
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment