Explorar el Código

Keep .type and .tag synchronized in Tags when using their setters.

tags/v0.3
Ben Kurtovic hace 11 años
padre
commit
f78bcf832a
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. +7
    -0
      mwparserfromhell/nodes/tag.py

+ 7
- 0
mwparserfromhell/nodes/tag.py Ver fichero

@@ -252,10 +252,17 @@ class Tag(Node):
if value not in self.TAGS_ALL:
raise ValueError(value)
self._type = value
for key in self.TRANSLATIONS:
if self.TRANSLATIONS[key] == value:
self._tag = parse_anything(key)

@tag.setter
def tag(self, value):
self._tag = parse_anything(value)
try:
self._type = self.TRANSLATIONS[text]
except KeyError:
self._type = self.TAG_UNKNOWN

@contents.setter
def contents(self, value):


Cargando…
Cancelar
Guardar