Skip to content

Commit 9c7727b

Browse files
Fix two typos in multiprocessing (GH-19571) (GH-19579)
(cherry picked from commit c606624) Co-authored-by: Galden <[email protected]> Co-authored-by: Galden <[email protected]>
1 parent c46dc6f commit 9c7727b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/multiprocessing/managers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def rebuild_as_list(obj):
5050

5151
class Token(object):
5252
'''
53-
Type to uniquely indentify a shared object
53+
Type to uniquely identify a shared object
5454
'''
5555
__slots__ = ('typeid', 'address', 'id')
5656

@@ -805,7 +805,7 @@ def _connect(self):
805805

806806
def _callmethod(self, methodname, args=(), kwds={}):
807807
'''
808-
Try to call a method of the referrent and return a copy of the result
808+
Try to call a method of the referent and return a copy of the result
809809
'''
810810
try:
811811
conn = self._tls.connection

0 commit comments

Comments
 (0)