Procházet zdrojové kódy

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

tags/v0.3
Ben Kurtovic před 11 roky
rodič
revize
f78bcf832a
1 změnil soubory, kde provedl 7 přidání a 0 odebrání
  1. +7
    -0
      mwparserfromhell/nodes/tag.py

+ 7
- 0
mwparserfromhell/nodes/tag.py Zobrazit soubor

@@ -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):


Načítá se…
Zrušit
Uložit