Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7a6706b

Browse files
authored
Fix couple typos (#4839)
1 parent 4f29f3c commit 7a6706b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/asyncio/windows_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ def _poll(self, timeout=None):
711711
f.set_result(value)
712712
self._results.append(f)
713713

714-
# Remove unregisted futures
714+
# Remove unregistered futures
715715
for ov in self._unregistered:
716716
self._cache.pop(ov.address, None)
717717
self._unregistered.clear()

Lib/test/test_asyncio/test_proactor_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ def test_pause_writing_3write(self):
423423
def test_dont_pause_writing(self):
424424
tr = self.pause_writing_transport(high=4)
425425

426-
# write a large chunk which completes immedialty,
426+
# write a large chunk which completes immediately,
427427
# it should not pause writing
428428
fut = asyncio.Future(loop=self.loop)
429429
fut.set_result(None)

0 commit comments

Comments
 (0)