This website works better with JavaScript.
Почетна
Помоћ
Пријавите Се
ben
/
mwparserfromhell
огледало од
https://github.com/earwig/mwparserfromhell
Прати
1
Волим
1
Креирај огранак
0
Код
Издања
24
Activity
Преглед изворни кода
Merge
c4fd7b7468
into
dea1612d77
pull/3/merge
Riamse
пре 12 година
родитељ
dea1612d77
c4fd7b7468
комит
01b9769095
1 измењених фајлова
са
16 додато
и
0 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Write
Preview
Loading…
Откажи
Сачувај