You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently if _multiprocessing is missing then from multiprocessing import connection raises an ImportError. It would be nice to delay the error until someone attempts to actually use multiprocessing.
…ng is missing (#114808)
`_multiprocessing` is only used under the `if _winapi:` block, this moves the import to be within the `_winapi` ImportError handling try/except for equivalent treatment.
…ocessing is missing (python#114808)
`_multiprocessing` is only used under the `if _winapi:` block, this moves the import to be within the `_winapi` ImportError handling try/except for equivalent treatment.
Uh oh!
There was an error while loading. Please reload this page.
Bug report
Bug description:
Currently if
_multiprocessing
is missing thenfrom multiprocessing import connection
raises anImportError
. It would be nice to delay the error until someone attempts to actually use multiprocessing.CPython versions tested on:
CPython main branch
Operating systems tested on:
No response
Linked PRs
The text was updated successfully, but these errors were encountered: