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
a939105a
Kaydet (Commit)
a939105a
authored
Agu 10, 2012
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix #15567. collections.deque wasn't imported
üst
774c8a39
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
threading.py
Lib/threading.py
+2
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/threading.py
Dosyayı görüntüle @
a939105a
...
...
@@ -10,6 +10,7 @@ except ImportError:
import
warnings
from
collections
import
deque
as
_deque
from
time
import
time
as
_time
,
sleep
as
_sleep
from
traceback
import
format_exc
as
_format_exc
...
...
@@ -913,7 +914,7 @@ def _test():
self
.
rc
=
Condition
(
self
.
mon
)
self
.
wc
=
Condition
(
self
.
mon
)
self
.
limit
=
limit
self
.
queue
=
deque
()
self
.
queue
=
_
deque
()
def
put
(
self
,
item
):
self
.
mon
.
acquire
()
...
...
Misc/NEWS
Dosyayı görüntüle @
a939105a
...
...
@@ -92,6 +92,8 @@ Core and Builtins
Library
-------
- Issue #15567: Fix NameError when running threading._test
- Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog
ended with '
\
'. Patch by Roger Serwy.
...
...
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