Skip to content

Commit ddccdbf

Browse files
[3.11] gh-106634: Corrected minor asyncio doc issues (GH-106671) (#106711)
gh-106634: Corrected minor asyncio doc issues (GH-106671) (cherry picked from commit 4b4a5b7) Co-authored-by: Chris Brett <[email protected]>
1 parent 357708e commit ddccdbf

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Lib/asyncio/base_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ def call_later(self, delay, callback, *args, context=None):
716716
always relative to the current time.
717717
718718
Each callback will be called exactly once. If two callbacks
719-
are scheduled for exactly the same time, it undefined which
719+
are scheduled for exactly the same time, it is undefined which
720720
will be called first.
721721
722722
Any positional arguments after the callback will be passed to

Lib/asyncio/events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ class AbstractEventLoopPolicy:
613613
def get_event_loop(self):
614614
"""Get the event loop for the current context.
615615
616-
Returns an event loop object implementing the BaseEventLoop interface,
616+
Returns an event loop object implementing the AbstractEventLoop interface,
617617
or raises an exception in case no event loop has been set for the
618618
current context and the current policy does not specify to create one.
619619

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ Erik Bray
224224
Brian Brazil
225225
Demian Brecht
226226
Dave Brennan
227+
Christopher Richard James Brett
227228
Tom Bridgman
228229
Anthony Briggs
229230
Keith Briggs

0 commit comments

Comments
 (0)