Переглянути джерело

Merge pull request #3 from Riamse/develop

Forgot to add compat.py (#1)
tags/v0.1
Ben Kurtovic 11 роки тому
джерело
коміт
ea28e991d9
1 змінених файлів з 16 додано та 0 видалено
  1. +16
    -0
      mwparserfromhell/compat.py

+ 16
- 0
mwparserfromhell/compat.py Переглянути файл

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

Завантаження…
Відмінити
Зберегти