From: Neal Norwitz Date: Fri, 31 Jan 2003 04:04:23 +0000 (+0000) Subject: Fix typo X-Git-Tag: v2.3c1~2164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d17406830cef6ee1f34e42013ae60e69dc91d71f;p=thirdparty%2FPython%2Fcpython.git Fix typo --- diff --git a/Lib/pickle.py b/Lib/pickle.py index 01c648ff442e..399e4ab99d0f 100644 --- a/Lib/pickle.py +++ b/Lib/pickle.py @@ -380,7 +380,7 @@ class Pickler: t = type(obj) getnewargs = getattr(obj, "__getnewargs__", None) if getnewargs: - args = getnewargs() # This bette not reference obj + args = getnewargs() # This better not reference obj else: args = ()