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
dec1c778
Kaydet (Commit)
dec1c778
authored
Mar 21, 2018
tarafından
Thomas Moreau
Kaydeden (comit)
Antoine Pitrou
Mar 21, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
FIX failure on OSX sem_getvalue (#6180)
üst
e2f33add
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
_test_multiprocessing.py
Lib/test/_test_multiprocessing.py
+7
-2
2018-03-21-17-59-39.bpo-33078.PQOniT.rst
...S.d/next/Library/2018-03-21-17-59-39.bpo-33078.PQOniT.rst
+1
-0
No files found.
Lib/test/_test_multiprocessing.py
Dosyayı görüntüle @
dec1c778
...
...
@@ -1062,11 +1062,16 @@ class _TestQueue(BaseTestCase):
q
=
self
.
Queue
(
maxsize
=
1
)
q
.
put
(
NotSerializable
())
q
.
put
(
True
)
self
.
assertEqual
(
q
.
qsize
(),
1
)
try
:
self
.
assertEqual
(
q
.
qsize
(),
1
)
except
NotImplementedError
:
# qsize is not available on all platform as it
# relies on sem_getvalue
pass
# bpo-30595: use a timeout of 1 second for slow buildbots
self
.
assertTrue
(
q
.
get
(
timeout
=
1.0
))
# Check that the size of the queue is correct
self
.
assert
Equal
(
q
.
qsize
(),
0
)
self
.
assert
True
(
q
.
empty
()
)
close_queue
(
q
)
def
test_queue_feeder_on_queue_feeder_error
(
self
):
...
...
Misc/NEWS.d/next/Library/2018-03-21-17-59-39.bpo-33078.PQOniT.rst
0 → 100644
Dosyayı görüntüle @
dec1c778
Fix the failure on OSX caused by the tests relying on sem_getvalue
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