This website works better with JavaScript.
首頁
說明
登入
ben
/
mwparserfromhell
镜像来自
https://github.com/earwig/mwparserfromhell
關註
1
收藏
1
複製
0
程式碼
版本發佈
24
Activity
瀏覽代碼
nodes: Add __contains__ to Template
This allows the use of `key in Template` syntax
pull/252/head
AntiCompositeNumber
4 年之前
父節點
204266c3df
當前提交
b87f4eef8f
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID:
A888A323AB506229
共有
1 個文件被更改
,包括
3 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
mwparserfromhell/nodes/template.py
+ 3
- 0
mwparserfromhell/nodes/template.py
查看文件
@@ -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*.
Write
Preview
Loading…
取消
儲存