Il sito funziona meglio con JavaScript.
Home
Aiuto
Accedi
ben
/
mwparserfromhell
mirror da
https://github.com/earwig/mwparserfromhell
Segui
1
Vota
1
Forka
0
Codice
Rilasci
24
Attività
Sfoglia il codice sorgente
Merge pull request
#3
from Riamse/develop
Forgot to add compat.py (
#1
)
tags/v0.1
Ben Kurtovic
12 anni fa
parent
dea1612d77
c4fd7b7468
commit
ea28e991d9
1 ha cambiato i file
con
16 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+16
-0
mwparserfromhell/compat.py
+ 16
- 0
mwparserfromhell/compat.py
Vedi 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
Scrivi
Anteprima
Caricamento…
Annulla
Salva