mirror of https://github.com/python/cpython
[3.13] gh-120121: Add InvalidStateError to concurrent.futures.__all__ (GH-120123) (#120273)
gh-120121: Add InvalidStateError to concurrent.futures.__all__ (GH-120123)
(cherry picked from commit 5d59b870ef
)
Co-authored-by: AN Long <aisk@users.noreply.github.com>
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
This commit is contained in:
parent
9b704ceeca
commit
4bca4e58af
|
@ -23,6 +23,7 @@ __all__ = (
|
|||
'ALL_COMPLETED',
|
||||
'CancelledError',
|
||||
'TimeoutError',
|
||||
'InvalidStateError',
|
||||
'BrokenExecutor',
|
||||
'Future',
|
||||
'Executor',
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Add :exc:`concurrent.futures.InvalidStateError` to module's ``__all__``.
|
Loading…
Reference in New Issue