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
518eaa8a
Kaydet (Commit)
518eaa8a
authored
Kas 09, 2010
tarafından
Ask Solem
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #7707: Documented that multiprocessing.Queue operations during
import can lead to deadlocks.
üst
1d3b8939
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
multiprocessing.rst
Doc/library/multiprocessing.rst
+3
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/multiprocessing.rst
Dosyayı görüntüle @
518eaa8a
...
@@ -120,7 +120,9 @@ processes:
...
@@ -120,7 +120,9 @@ processes:
print(q.get()) # prints "[42, None, '
hello
']"
print(q.get()) # prints "[42, None, '
hello
']"
p.join()
p.join()
Queues are thread and process safe.
Queues are thread and process safe, but note that they must never
be instantiated as a side effect of importing a module: this can lead
to a deadlock! (see :ref:`threaded-imports`)
**Pipes**
**Pipes**
...
...
Misc/NEWS
Dosyayı görüntüle @
518eaa8a
...
@@ -2879,6 +2879,9 @@ Build
...
@@ -2879,6 +2879,9 @@ Build
Documentation
Documentation
-------------
-------------
- Issue #7707: Document that ``multiprocessing.Queue`` operations during import
can lead to deadlocks.
- Issue #9817: Add expat COPYING file; add expat, libffi and expat licenses
- Issue #9817: Add expat COPYING file; add expat, libffi and expat licenses
to Doc/license.rst.
to Doc/license.rst.
...
...
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