Fix the line to what is my guess at the original author's meaning.
(The line has no effect anyway, but is present because it's
customary call the base class __init__).
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index 8927907..fcc7c13 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -2226,7 +2226,7 @@
__slots__ = ['prec']
def __init__(self, value=0.0, prec=12):
self.prec = int(prec)
- float.__init__(value)
+ float.__init__(self, value)
def __repr__(self):
return "%.*g" % (self.prec, self)
vereq(repr(precfloat(1.1)), "1.1")