]> granicus.if.org Git - python/commitdiff
Fix typo
authorNeal Norwitz <nnorwitz@gmail.com>
Fri, 31 Jan 2003 04:04:23 +0000 (04:04 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Fri, 31 Jan 2003 04:04:23 +0000 (04:04 +0000)
Lib/pickle.py

index 01c648ff442e764c2232092183dc3748c68ff32c..399e4ab99d0fbe2f60c2ec4017bed03d624b6da8 100644 (file)
@@ -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 = ()