Skip to content

typo fix : identify referent #19571

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 18, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

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 @@ -60,7 +60,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 @@ -795,7 +795,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