[Python-Dev] Concurrent.futures: no type discovery for PyCharm

Ilya Kamenshchikov ikamenshchikov at gmail.com
Sat Apr 20 12:43:19 EDT 2019


alright, so would an import under TYPE_CHECKING guard be an option? like:

from typing import TYPE_CHECKING
if TYPE_CHECKING:
    from .process import ProcessPoolExecutor
    from .thread import ThreadPoolExecutor


Perhaps we can have both clarity and performance.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-dev/attachments/20190420/304e2e9e/attachment.html>


More information about the Python-Dev mailing list