We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NotImplementedError: unsupported platform
If these three things occur...
asyncio
trio
Then there's a case where an import of trio can occur and trigger a NotImplementedError: unsupported platform exception. (python-trio/trio#3013)
I'd suggest:
httpcore/httpcore/_synchronization.py
Line 12 in ba3f942
import trio
import anyio
The text was updated successfully, but these errors were encountered:
Handle import of trio raising NotImplementedError on unsupported …
NotImplementedError
fecf9d6
…platforms. Closes #946
17409bb
Successfully merging a pull request may close this issue.
If these three things occur...
asyncio
.trio
package happens to be installed.Then there's a case where an import of
trio
can occur and trigger aNotImplementedError: unsupported platform
exception. (python-trio/trio#3013)I'd suggest:
httpcore/httpcore/_synchronization.py
Line 12 in ba3f942
import trio
orimport anyio
unless we're actually running async.The text was updated successfully, but these errors were encountered: