This website works better with JavaScript.
首頁
說明
登入
ben
/
mwparserfromhell
镜像来自
https://github.com/earwig/mwparserfromhell
關註
1
收藏
1
複製
0
程式碼
版本發佈
24
Activity
瀏覽代碼
Mixed up py3k and py2k.
tags/v0.3.3
Ben Kurtovic
11 年之前
父節點
f0a591b323
當前提交
3d6079d831
共有
1 個文件被更改
,包括
2 次插入
和
2 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
mwparserfromhell/compat.py
+ 2
- 2
mwparserfromhell/compat.py
查看文件
@@ -16,14 +16,14 @@ py32 = py3k and sys.version_info.minor == 2
if py3k:
bytes = bytes
str = str
range =
x
range
range = range
maxsize = sys.maxsize
import html.entities as htmlentities
else:
bytes = str
str = unicode
range = range
range =
x
range
maxsize = sys.maxint
import htmlentitydefs as htmlentities
Write
Preview
Loading…
取消
儲存