浏览代码

Mixed up py3k and py2k.

tags/v0.3.3
Ben Kurtovic 10 年前
父节点
当前提交
3d6079d831
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +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 = xrange
range = range
maxsize = sys.maxsize
import html.entities as htmlentities

else:
bytes = str
str = unicode
range = range
range = xrange
maxsize = sys.maxint
import htmlentitydefs as htmlentities



正在加载...
取消
保存