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
c69d9521
Kaydet (Commit)
c69d9521
authored
Eki 21, 2016
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.6 (issue #26796)
üst
ce2fa599
6330f2a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
asyncio-eventloop.rst
Doc/library/asyncio-eventloop.rst
+7
-0
base_events.py
Lib/asyncio/base_events.py
+1
-4
No files found.
Doc/library/asyncio-eventloop.rst
Dosyayı görüntüle @
c69d9521
...
...
@@ -671,6 +671,13 @@ pool of processes). By default, an event loop uses a thread pool executor
This method is a :ref:`coroutine <coroutine>`.
.. versionchanged:: 3.5.3
:meth:`BaseEventLoop.run_in_executor` no longer configures the
``max_workers`` of the thread pool executor it creates, instead
leaving it up to the thread pool executor
(:class:`~concurrent.futures.ThreadPoolExecutor`) to set the
default.
.. method:: AbstractEventLoop.set_default_executor(executor)
Set the default executor used by :meth:`run_in_executor`.
...
...
Lib/asyncio/base_events.py
Dosyayı görüntüle @
c69d9521
...
...
@@ -41,9 +41,6 @@ from .log import logger
__all__
=
[
'BaseEventLoop'
]
# Argument for default thread pool executor creation.
_MAX_WORKERS
=
5
# Minimum number of _scheduled timer handles before cleanup of
# cancelled handles is performed.
_MIN_SCHEDULED_TIMER_HANDLES
=
100
...
...
@@ -620,7 +617,7 @@ class BaseEventLoop(events.AbstractEventLoop):
if
executor
is
None
:
executor
=
self
.
_default_executor
if
executor
is
None
:
executor
=
concurrent
.
futures
.
ThreadPoolExecutor
(
_MAX_WORKERS
)
executor
=
concurrent
.
futures
.
ThreadPoolExecutor
()
self
.
_default_executor
=
executor
return
futures
.
wrap_future
(
executor
.
submit
(
func
,
*
args
),
loop
=
self
)
...
...
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