使用 JavaScript能使本网站更好的工作。
首页
帮助
登录
ben
/
mwparserfromhell
镜像自地址
https://github.com/earwig/mwparserfromhell
关注
1
点赞
1
派生
0
代码
版本发布
24
动态
浏览代码
nodes: Add __contains__ to Template
This allows the use of `key in Template` syntax
pull/252/head
AntiCompositeNumber
4 年前
父节点
204266c3df
当前提交
b87f4eef8f
找不到此签名对应的密钥
GPG 密钥 ID:
A888A323AB506229
共有
1 个文件被更改
,包括
3 次插入
和
0 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+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*.
撰写
预览
正在加载...
取消
保存