This website works better with JavaScript.
Home
Help
Sign In
ben
/
mwparserfromhell
mirror of
https://github.com/earwig/mwparserfromhell
Watch
1
Star
1
Fork
0
Code
Releases
24
Activity
Browse Source
Mixed up py3k and py2k.
tags/v0.3.3
Ben Kurtovic
11 years ago
parent
f0a591b323
commit
3d6079d831
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
mwparserfromhell/compat.py
+ 2
- 2
mwparserfromhell/compat.py
View File
@@ -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…
Cancel
Save