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 pull request
#3
from Riamse/develop
Forgot to add compat.py (
#1
)
tags/v0.1
Ben Kurtovic
há 12 anos
ascendente
dea1612d77
c4fd7b7468
cometimento
ea28e991d9
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