Skip to content

Commit c606624

Browse files
authored
Fix two typos in multiprocessing (GH-19571)
1 parent 87502dd commit c606624

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
@@ -60,7 +60,7 @@ def rebuild_as_list(obj):
6060

6161
class Token(object):
6262
'''
63-
Type to uniquely indentify a shared object
63+
Type to uniquely identify a shared object
6464
'''
6565
__slots__ = ('typeid', 'address', 'id')
6666

@@ -795,7 +795,7 @@ def _connect(self):
795795

796796
def _callmethod(self, methodname, args=(), kwds={}):
797797
'''
798-
Try to call a method of the referrent and return a copy of the result
798+
Try to call a method of the referent and return a copy of the result
799799
'''
800800
try:
801801
conn = self._tls.connection

0 commit comments

Comments
 (0)