From 37cbba85844bb48cca9d04fd1e07b82637cdfd9b Mon Sep 17 00:00:00 2001 From: Galden Date: Sat, 18 Apr 2020 14:58:29 +0800 Subject: [PATCH] Fix two typos in multiprocessing (GH-19571) (cherry picked from commit c606624af8d4cb3b4a052fb263bb983b3f87585b) Co-authored-by: Galden --- Lib/multiprocessing/managers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py index fc6a25fa623f08..85e0d886f56474 100644 --- a/Lib/multiprocessing/managers.py +++ b/Lib/multiprocessing/managers.py @@ -59,7 +59,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') @@ -821,7 +821,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