Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork1.9k
Addconcurrent.interpreters
stubs for 3.14.0b3#14307
New issue
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Addconcurrent.interpreters
stubs for 3.14.0b3#14307
Uh oh!
There was an error while loading.Please reload this page.
Conversation
_R = TypeVar("_R") | ||
_P = ParamSpec("_P") | ||
class ExecutionFailed(InterpreterError): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Not sure what to make of the pyright errors here and in_queues.pyi
. It seems to be having issues with imports from_interpreters
and_interpqueues
?
/home/runner/work/typeshed/typeshed/stdlib/concurrent/interpreters/__init__.pyi /home/runner/work/typeshed/typeshed/stdlib/concurrent/interpreters/__init__.pyi:37:23 - error: Base class type is unknown, obscuring type of derived class (reportUntypedBaseClass)/home/runner/work/typeshed/typeshed/stdlib/concurrent/interpreters/_queues.pyi /home/runner/work/typeshed/typeshed/stdlib/concurrent/interpreters/_queues.pyi:24:18 - error: Base class type is unknown, obscuring type of derived class (reportUntypedBaseClass) /home/runner/work/typeshed/typeshed/stdlib/concurrent/interpreters/_queues.pyi:25:17 - error: Base class type is unknown, obscuring type of derived class (reportUntypedBaseClass) /home/runner/work/typeshed/typeshed/stdlib/concurrent/interpreters/_queues.pyi:26:32 - error: Base class type is unknown, obscuring type of derived class (reportUntypedBaseClass)4 errors, 0 warnings, 0 informations
Uh oh!
There was an error while loading.Please reload this page.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
I've marked this as a draft for now. As I understand it, this isn't ready to be merged. (Also, it has test errors.) |
According tomypy_primer, this change has no effect on the checked open source code. 🤖🎉 |
Uh oh!
There was an error while loading.Please reload this page.
Refs#14303
Upstream issue:python/cpython#134939