From: Andrés Delfino Date: Sun, 10 Jun 2018 00:41:09 +0000 (-0300) Subject: Fix typo in object.__getnewargs__() documentation (GH-7554) X-Git-Tag: v3.8.0a1~1604 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e0534c4024c181aa47a300142c59eeeee71db46;p=thirdparty%2FPython%2Fcpython.git Fix typo in object.__getnewargs__() documentation (GH-7554) --- diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index ea854fae1944..4f9d3596b649 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -518,7 +518,7 @@ methods: .. method:: object.__getnewargs__() - This method serve a similar purpose as :meth:`__getnewargs_ex__`, but + This method serves a similar purpose as :meth:`__getnewargs_ex__`, but supports only positional arguments. It must return a tuple of arguments ``args`` which will be passed to the :meth:`__new__` method upon unpickling.