Il sito funziona meglio con JavaScript.
Home
Aiuto
Accedi
ben
/
mwparserfromhell
mirror da
https://github.com/earwig/mwparserfromhell
Segui
1
Vota
1
Forka
0
Codice
Rilasci
24
Attività
Sfoglia il codice sorgente
Simplify parameter removal.
tags/v0.3.2
Ben Kurtovic
11 anni fa
parent
c14070a99a
commit
40b92358b4
1 ha cambiato i file
con
2 aggiunte
e
2 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+2
-2
mwparserfromhell/nodes/template.py
+ 2
- 2
mwparserfromhell/nodes/template.py
Vedi File
@@ -331,5 +331,5 @@ class Template(Node):
removed = True
if not removed:
raise ValueError(name)
for i
, index in enumerate
(to_remove):
self.params.pop(i
ndex - i
)
# Note the shift when we remove a param
for i
in reversed
(to_remove):
self.params.pop(i)
Scrivi
Anteprima
Caricamento…
Annulla
Salva