Browse Source

Merge pull request #3 from Riamse/develop

Forgot to add compat.py (#1)
tags/v0.1
Ben Kurtovic 11 years ago
parent
commit
ea28e991d9
1 changed files with 16 additions and 0 deletions
  1. +16
    -0
      mwparserfromhell/compat.py

+ 16
- 0
mwparserfromhell/compat.py View File

@@ -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

Loading…
Cancel
Save