Procházet zdrojové kódy

Fix parsing of arguments in SmartList.sort()

tags/v0.2
Ben Kurtovic před 11 roky
rodič
revize
fb92349909
1 změnil soubory, kde provedl 7 přidání a 9 odebrání
  1. +7
    -9
      mwparserfromhell/smart_list.py

+ 7
- 9
mwparserfromhell/smart_list.py Zobrazit soubor

@@ -168,16 +168,14 @@ class SmartList(list):
copy = list(self)
for child in self._children:
child._parent = copy
kwargs = {}
if cmp is not None:
if key is not None:
if reverse is not None:
super(SmartList, self).sort(cmp, key, reverse)
else:
super(SmartList, self).sort(cmp, key)
else:
super(SmartList, self).sort(cmp)
else:
super(SmartList, self).sort()
kwargs["cmp"] = cmp
if key is not None:
kwargs["key"] = key
if reverse is not None:
kwargs["reverse"] = reverse
super(SmartList, self).sort(**kwargs)


class _ListProxy(list):


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