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
nodes: Add __contains__ to Template
This allows the use of `key in Template` syntax
pull/252/head
AntiCompositeNumber
4 anni fa
parent
204266c3df
commit
b87f4eef8f
Non sono state trovate chiavi note per questa firma nel database
ID Chiave GPG:
A888A323AB506229
1 ha cambiato i file
con
3 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+3
-0
mwparserfromhell/nodes/template.py
+ 3
- 0
mwparserfromhell/nodes/template.py
Vedi File
@@ -214,6 +214,9 @@ class Template(Node):
"""Alias for :meth:`has`."""
return self.has(name, ignore_empty)
def __contains__(self, name):
return self.has(name)
def get(self, name, default=_UNSET):
"""Get the parameter whose name is *name*.
Scrivi
Anteprima
Caricamento…
Annulla
Salva