Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/asyncio/selector_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _test_selector_event(selector, fd, event):
class BaseSelectorEventLoop(base_events.BaseEventLoop):
"""Selector event loop.

See events.EventLoop for API specification.
See events.AbstractEventLoop for API specification.
"""

def __init__(self, selector=None):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Fix wrong class reference in asyncio.selector_events.BaseSelectorEventLoop
docstring. Changed reference from non-existent events.EventLoop to
events.AbstractEventLoop, which correctly documents the API specification.
#.. section: Tests #.. section: Build #.. section: Windows #.. section:
macOS #.. section: IDLE #.. section: Tools/Demos #.. section: C API

# Write your Misc/NEWS.d entry below. It should be a simple ReST paragraph.
# Don't start with "- Issue #<n>: " or "- gh-issue-<n>: " or that sort of
stuff.
###########################################################################
Loading