Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
ben
/
mwparserfromhell
réplica de
https://github.com/earwig/mwparserfromhell
Seguir
1
Destacar
1
Fork
0
Código
Lanzamientos
24
Actividad
Explorar el Código
Merge
c4fd7b7468
into
dea1612d77
pull/3/merge
Riamse
hace 12 años
padre
dea1612d77
c4fd7b7468
commit
01b9769095
Se han
modificado 1 ficheros
con
16 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+16
-0
mwparserfromhell/compat.py
+ 16
- 0
mwparserfromhell/compat.py
Ver fichero
@@ -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
Escribir
Vista previa
Cargando…
Cancelar
Guardar