Este sítio funciona melhor com JavaScript.
Página inicial
Ajuda
Iniciar sessão
ben
/
mwparserfromhell
espelho de
https://github.com/earwig/mwparserfromhell
Vigiar
1
Marcar como favorito
1
Derivar
0
Código
Lançamentos
24
Trabalho
Ver a proveniência
Merge
c4fd7b7468
into
dea1612d77
pull/3/merge
Riamse
há 12 anos
ascendente
dea1612d77
c4fd7b7468
cometimento
01b9769095
1 ficheiros alterados
com
16 adições
e
0 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+16
-0
mwparserfromhell/compat.py
+ 16
- 0
mwparserfromhell/compat.py
Ver ficheiro
@@ -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
Escrever
Pré-visualizar
Carregando…
Cancelar
Guardar