mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Fix warnings about object.__init__() signature.
Two (test_array and test_descr) were bug IMO; the third (copy_reg) is a work-around which recognizes that object.__init__() doesn't do anything.
This commit is contained in:
parent
01a807db2a
commit
ab8802a4f7
3 changed files with 2 additions and 3 deletions
|
@ -48,7 +48,8 @@ def _reconstructor(cls, base, state):
|
|||
obj = object.__new__(cls)
|
||||
else:
|
||||
obj = base.__new__(cls, state)
|
||||
base.__init__(obj, state)
|
||||
if base.__init__ != object.__init__:
|
||||
base.__init__(obj, state)
|
||||
return obj
|
||||
|
||||
_HEAPTYPE = 1<<9
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue