From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 18 Apr 2020 07:24:15 +0000 (-0700) Subject: Fix two typos in multiprocessing (GH-19571) (GH-19578) X-Git-Tag: v3.8.3rc1~25 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=904dd068fb6dc9a70f30dc46061e8b57d7797119;p=thirdparty%2FPython%2Fcpython.git Fix two typos in multiprocessing (GH-19571) (GH-19578) (cherry picked from commit c606624af8d4cb3b4a052fb263bb983b3f87585b) Co-authored-by: Galden Co-authored-by: Galden --- diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py index fc6a25fa623f..85e0d886f564 100644 --- a/Lib/multiprocessing/managers.py +++ b/Lib/multiprocessing/managers.py @@ -59,7 +59,7 @@ if view_types[0] is not list: # only needed in Py3.0 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 @@ class BaseProxy(object): 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