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
b8c94177
Kaydet (Commit)
b8c94177
authored
Ock 15, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Variant of Skip's patch 103246 (Remove unneeded string exception compat from Queue).
üst
10bc5932
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
13 deletions
+7
-13
Queue.py
Lib/Queue.py
+7
-13
No files found.
Lib/Queue.py
Dosyayı görüntüle @
b8c94177
"""A multi-producer, multi-consumer queue."""
# define this exception to be compatible with Python 1.5's class
# exceptions, but also when -X option is used.
try
:
class
Empty
(
Exception
):
pass
class
Full
(
Exception
):
pass
except
TypeError
:
# string based exceptions
# exception raised by get(block=0)/get_nowait()
Empty
=
'Queue.Empty'
# exception raised by put(block=0)/put_nowait()
Full
=
'Queue.Full'
class
Empty
(
Exception
):
"Exception raised by Queue.get(block=0)/get_nowait()."
pass
class
Full
(
Exception
):
"Exception raised by Queue.put(block=0)/put_nowait()."
pass
class
Queue
:
def
__init__
(
self
,
maxsize
=
0
):
...
...
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