瀏覽代碼

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



Loading…
取消
儲存