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
aad7b2e4
Kaydet (Commit)
aad7b2e4
authored
Şub 05, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
test_multiprocessing: tolerate a delta of 30 ms because of bad clock resolution
on Windows
üst
aef859c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
_test_multiprocessing.py
Lib/test/_test_multiprocessing.py
+4
-2
No files found.
Lib/test/_test_multiprocessing.py
Dosyayı görüntüle @
aad7b2e4
...
@@ -716,9 +716,11 @@ class _TestQueue(BaseTestCase):
...
@@ -716,9 +716,11 @@ class _TestQueue(BaseTestCase):
def
test_timeout
(
self
):
def
test_timeout
(
self
):
q
=
multiprocessing
.
Queue
()
q
=
multiprocessing
.
Queue
()
start
=
time
.
time
()
start
=
time
.
time
()
self
.
assertRaises
(
pyqueue
.
Empty
,
q
.
get
,
True
,
0.2
)
self
.
assertRaises
(
pyqueue
.
Empty
,
q
.
get
,
True
,
0.2
00
)
delta
=
time
.
time
()
-
start
delta
=
time
.
time
()
-
start
self
.
assertGreaterEqual
(
delta
,
0.18
)
# Tolerate a delta of 30 ms because of the bad clock resolution on
# Windows (usually 15.6 ms)
self
.
assertGreaterEqual
(
delta
,
0.170
)
#
#
#
#
...
...
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