本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
說明
登入
ben
/
mwparserfromhell
镜像来自
https://github.com/earwig/mwparserfromhell
關注
1
收藏
1
複製
0
程式碼
版本發佈
24
活動
瀏覽代碼
Merge
c4fd7b7468
into
dea1612d77
pull/3/merge
Riamse
12 年之前
父節點
dea1612d77
c4fd7b7468
當前提交
01b9769095
共有
1 個檔案被更改
,包括
16 行新增
和
0 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+16
-0
mwparserfromhell/compat.py
+ 16
- 0
mwparserfromhell/compat.py
查看文件
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
import sys
v = sys.version_info[0]
if v >= 3:
bytes = bytes
str = str
basestring = (str, bytes)
import html.entities as htmlentitydefs
else:
bytes = str
str = unicode
basestring = basestring
import htmlentitydefs
Write
Preview
Loading…
取消
儲存