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
Mixed up py3k and py2k.
tags/v0.3.3
Ben Kurtovic
11 anni fa
parent
f0a591b323
commit
3d6079d831
1 ha cambiato i file
con
2 aggiunte
e
2 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+2
-2
mwparserfromhell/compat.py
+ 2
- 2
mwparserfromhell/compat.py
Vedi 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
Scrivi
Anteprima
Caricamento…
Annulla
Salva