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:
Guido van Rossum 2007-04-02 23:55:37 +00:00
parent 01a807db2a
commit ab8802a4f7
3 changed files with 2 additions and 3 deletions

View file

@ -2305,7 +2305,6 @@ def inherits():
__slots__ = ['prec']
def __init__(self, value=0.0, prec=12):
self.prec = int(prec)
float.__init__(self, value)
def __repr__(self):
return "%.*g" % (self.prec, self)
vereq(repr(precfloat(1.1)), "1.1")