mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fix typo
This commit is contained in:
parent
91149821d3
commit
d17406830c
1 changed files with 1 additions and 1 deletions
|
@ -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 = ()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue