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
6690bb9f
Unverified
Kaydet (Commit)
6690bb9f
authored
Ock 20, 2018
tarafından
INADA Naoki
Kaydeden (comit)
GitHub
Ock 20, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32596: Lazy import concurrent.futures.process and thread (GH-5241)
üst
338cd83c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
2 deletions
+37
-2
__init__.py
Lib/concurrent/futures/__init__.py
+33
-2
2018-01-19-19-57-45.bpo-32596.4aVIie.rst
...S.d/next/Library/2018-01-19-19-57-45.bpo-32596.4aVIie.rst
+4
-0
No files found.
Lib/concurrent/futures/__init__.py
Dosyayı görüntüle @
6690bb9f
...
...
@@ -15,5 +15,36 @@ from concurrent.futures._base import (FIRST_COMPLETED,
Executor
,
wait
,
as_completed
)
from
concurrent.futures.process
import
ProcessPoolExecutor
from
concurrent.futures.thread
import
ThreadPoolExecutor
__all__
=
(
'FIRST_COMPLETED'
,
'FIRST_EXCEPTION'
,
'ALL_COMPLETED'
,
'CancelledError'
,
'TimeoutError'
,
'BrokenExecutor'
,
'Future'
,
'Executor'
,
'wait'
,
'as_completed'
,
'ProcessPoolExecutor'
,
'ThreadPoolExecutor'
,
)
def
__dir__
():
return
__all__
+
(
'__author__'
,
'__doc__'
)
def
__getattr__
(
name
):
global
ProcessPoolExecutor
,
ThreadPoolExecutor
if
name
==
'ProcessPoolExecutor'
:
from
.process
import
ProcessPoolExecutor
return
ProcessPoolExecutor
if
name
==
'ThreadPoolExecutor'
:
from
.thread
import
ThreadPoolExecutor
return
ThreadPoolExecutor
raise
AttributeError
(
f
"module {__name__} has no attribute {name}"
)
Misc/NEWS.d/next/Library/2018-01-19-19-57-45.bpo-32596.4aVIie.rst
0 → 100644
Dosyayı görüntüle @
6690bb9f
``concurrent.futures`` imports ``ThreadPoolExecutor`` and
``ProcessPoolExecutor`` lazily (using :pep:`562`).
It makes ``import asyncio`` about 15% faster because asyncio
uses only ``ThreadPoolExecutor`` by default.
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