correct parameter name for sock_recv of BaseEventLoop subclasses (#13212)

This commit is contained in:
Stephen Morton
2024-12-09 18:26:34 -08:00
committed by GitHub
parent 4664a1406e
commit b0768596d2
3 changed files with 3 additions and 2 deletions

View File

@@ -288,8 +288,6 @@ ast.Str.__new__ # runtime is *args, **kwargs due to a wrapper, but we have more
ast.NodeVisitor.visit_\w+ # Methods are discovered dynamically, see #3796
_?asyncio.Future.__init__ # Usually initialized from c object
asyncio.futures.Future.__init__ # Usually initialized from c object
asyncio.proactor_events.BaseProactorEventLoop.sock_recv # nbytes parameter has different name 'n' in implementation
asyncio.selector_events.BaseSelectorEventLoop.sock_recv # nbytes parameter has different name 'n' in implementation
# Condition functions are exported in __init__
asyncio.Condition.acquire