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
ae138cbf
Kaydet (Commit)
ae138cbf
authored
Ock 15, 2008
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refactor if/elif chain for clarity and speed
üst
f7bd964f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
11 deletions
+10
-11
Queue.py
Lib/Queue.py
+10
-11
No files found.
Lib/Queue.py
Dosyayı görüntüle @
ae138cbf
...
...
@@ -102,18 +102,17 @@ class Queue:
"""
self
.
not_full
.
acquire
()
try
:
if
not
block
:
if
self
.
maxsize
>
0
and
self
.
_qsize
()
==
self
.
maxsize
:
raise
Full
elif
timeout
is
None
:
if
self
.
maxsize
>
0
:
if
self
.
maxsize
>
0
:
if
not
block
:
if
self
.
_qsize
()
==
self
.
maxsize
:
raise
Full
elif
timeout
is
None
:
while
self
.
_qsize
()
==
self
.
maxsize
:
self
.
not_full
.
wait
()
else
:
if
timeout
<
0
:
elif
timeout
<
0
:
raise
ValueError
(
"'timeout' must be a positive number"
)
e
ndtime
=
_time
()
+
timeout
if
self
.
maxsize
>
0
:
e
lse
:
endtime
=
_time
()
+
timeout
while
self
.
_qsize
()
==
self
.
maxsize
:
remaining
=
endtime
-
_time
()
if
remaining
<=
0.0
:
...
...
@@ -152,9 +151,9 @@ class Queue:
elif
timeout
is
None
:
while
not
self
.
_qsize
():
self
.
not_empty
.
wait
()
elif
timeout
<
0
:
raise
ValueError
(
"'timeout' must be a positive number"
)
else
:
if
timeout
<
0
:
raise
ValueError
(
"'timeout' must be a positive number"
)
endtime
=
_time
()
+
timeout
while
not
self
.
_qsize
():
remaining
=
endtime
-
_time
()
...
...
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