Skip to content

Commit 1af057a

Browse files
committed
5 or 6 more
1 parent 408cafc commit 1af057a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Lib/multiprocessing/resource_tracker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _reentrant_call_error(self):
7676
"Reentrant call into the multiprocessing resource tracker")
7777

7878
def __del__(self):
79-
# making sure child processess are cleaned before ResourceTracker
79+
# making sure child processes are cleaned before ResourceTracker
8080
# gets destructed.
8181
# see https://github.com/python/cpython/issues/88887
8282
self._stop(use_blocking_lock=False)

Lib/test/test_logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2387,7 +2387,7 @@ def __getattr__(self, attribute):
23872387
return getattr(queue, attribute)
23882388

23892389
class CustomQueueFakeProtocol(CustomQueueProtocol):
2390-
# An object implementing the minimial Queue API for
2390+
# An object implementing the minimal Queue API for
23912391
# the logging module but with incorrect signatures.
23922392
#
23932393
# The object will be considered a valid queue class since we

Lib/test/test_opcache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ def test(default=None):
571571
def make_deferred_ref_count_obj():
572572
"""Create an object that uses deferred reference counting.
573573
574-
Only objects that use deferred refence counting may be stored in inline
574+
Only objects that use deferred reference counting may be stored in inline
575575
caches in free-threaded builds. This constructs a new class named Foo,
576576
which uses deferred reference counting.
577577
"""

Lib/test/test_pyrepl/test_pyrepl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ def test_import_completions(self):
934934
# Make iter_modules() search only the standard library.
935935
# This makes the test more reliable in case there are
936936
# other user packages/scripts on PYTHONPATH which can
937-
# intefere with the completions.
937+
# interfere with the completions.
938938
lib_path = os.path.dirname(importlib.__path__[0])
939939
sys.path = [lib_path]
940940

Lib/test/test_xml_etree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2710,7 +2710,7 @@ def test_remove_with_clear_assume_existing(self):
27102710

27112711
def do_test_remove_with_clear(self, *, raises):
27122712

2713-
# Until the discrepency between "del root[:]" and "root.clear()" is
2713+
# Until the discrepancy between "del root[:]" and "root.clear()" is
27142714
# resolved, we need to keep two tests. Previously, using "del root[:]"
27152715
# did not crash with the reproducer of gh-126033 while "root.clear()"
27162716
# did.

0 commit comments

Comments
 (0)