Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Add asyncio.graph, updates to asyncio.futures (3.14) #14003

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
May 12, 2025
Prev Previous commit
Next Next commit
Address comment
  • Loading branch information
max-muoto committed May 11, 2025
commit d51860149815a417dd13d77726a852dd251d0034
6 changes: 3 additions & 3 deletions 6 stdlib/asyncio/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ from .tasks import *
from .threads import *
from .transports import *

if sys.version_info >= (3, 14):
from .graph import *

if sys.version_info >= (3, 11):
from .taskgroups import *
from .timeouts import *
Expand All @@ -32,7 +35,6 @@ else:

if sys.platform == "win32":
if sys.version_info >= (3, 14):
from .graph import *

__all__ = (
"BaseEventLoop", # from base_events
Expand Down Expand Up @@ -508,8 +510,6 @@ if sys.platform == "win32":
)
else:
if sys.version_info >= (3, 14):
from .graph import *

__all__ = (
"BaseEventLoop", # from base_events
"Server", # from base_events
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.