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
fb1720b0
Kaydet (Commit)
fb1720b0
authored
Ara 09, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix "seperate".
üst
792c076c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
concurrent.futures.rst
Doc/library/concurrent.futures.rst
+1
-1
process.py
Lib/concurrent/futures/process.py
+1
-1
No files found.
Doc/library/concurrent.futures.rst
Dosyayı görüntüle @
fb1720b0
...
@@ -10,7 +10,7 @@ The :mod:`concurrent.futures` module provides a high-level interface for
...
@@ -10,7 +10,7 @@ The :mod:`concurrent.futures` module provides a high-level interface for
asynchronously executing callables.
asynchronously executing callables.
The asynchronous execution can be be performed with threads, using
The asynchronous execution can be be performed with threads, using
:class:`ThreadPoolExecutor`, or sep
e
rate processes, using
:class:`ThreadPoolExecutor`, or sep
a
rate processes, using
:class:`ProcessPoolExecutor`. Both implement the same interface, which is
:class:`ProcessPoolExecutor`. Both implement the same interface, which is
defined by the abstract :class:`Executor` class.
defined by the abstract :class:`Executor` class.
...
...
Lib/concurrent/futures/process.py
Dosyayı görüntüle @
fb1720b0
...
@@ -118,7 +118,7 @@ class _CallItem(object):
...
@@ -118,7 +118,7 @@ class _CallItem(object):
def
_process_worker
(
call_queue
,
result_queue
,
shutdown
):
def
_process_worker
(
call_queue
,
result_queue
,
shutdown
):
"""Evaluates calls from call_queue and places the results in result_queue.
"""Evaluates calls from call_queue and places the results in result_queue.
This worker is run in a sep
e
rate process.
This worker is run in a sep
a
rate process.
Args:
Args:
call_queue: A multiprocessing.Queue of _CallItems that will be read and
call_queue: A multiprocessing.Queue of _CallItems that will be read and
...
...
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