Originalmente quería preguntar this question, pero luego me pareció que ya estaba pensado antes ...Python se extiende con - el uso de super() Python 3 vs Python 2
googlear alrededor me encontré con este ejemplo de extending configparser. Los siguientes trabajos con Python 3:
$ python3
Python 3.2.3rc2 (default, Mar 21 2012, 06:59:51)
[GCC 4.6.3] on linux2
>>> from configparser import SafeConfigParser
>>> class AmritaConfigParser(SafeConfigParser):
... def __init_(self):
... super().__init__()
...
>>> cfg = AmritaConfigParser()
Pero no con Python 2:
>>> class AmritaConfigParser(SafeConfigParser):
... def __init__(self):
... super(SafeConfigParser).init()
...
>>> cfg = AmritaConfigParser()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 3, in __init__
TypeError: must be type, not classob
luego leí un poco en Python Nueva Clase contra Clase estilos Viejo (por ejemplo here y ahora. pregunto, no puedo hacer:
class MyConfigParser(ConfigParser.ConfigParser):
def Write(self, fp):
"""override the module's original write funcition"""
....
def MyWrite(self, fp):
"""Define new function and inherit all others"""
embargo, no debería llamar a init Es esto en Python 2 el equivalente:?
class AmritaConfigParser(ConfigParser.SafeConfigParser):
#def __init__(self):
# super().__init__() # Python3 syntax, or rather, new style class syntax ...
#
# is this the equivalent of the above ?
def __init__(self):
ConfigParser.SafeConfigParser.__init__(self)
En su ejemplo que no es necesario definir un '__init __()' en la subclase si lo único que hace es llamar a la superclase '__init __()' (en Python 2 o 3) - en lugar de dejar que los súper se hereden. – martineau
Referencia útil: http://amyboyle.ninja/Python-Inheritance/ –