Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/multiprocessing/managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def rebuild_as_list(obj):

class Token(object):
'''
Type to uniquely indentify a shared object
Type to uniquely identify a shared object
'''
__slots__ = ('typeid', 'address', 'id')

Expand Down Expand Up @@ -805,7 +805,7 @@ def _connect(self):

def _callmethod(self, methodname, args=(), kwds={}):
'''
Try to call a method of the referrent and return a copy of the result
Try to call a method of the referent and return a copy of the result
'''
try:
conn = self._tls.connection
Expand Down