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
Simplify parameter removal.
tags/v0.3.2
Ben Kurtovic
hace 11 años
padre
c14070a99a
commit
40b92358b4
Se han
modificado 1 ficheros
con
2 adiciones
y
2 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+2
-2
mwparserfromhell/nodes/template.py
+ 2
- 2
mwparserfromhell/nodes/template.py
Ver fichero
@@ -331,5 +331,5 @@ class Template(Node):
removed = True
if not removed:
raise ValueError(name)
for i
, index in enumerate
(to_remove):
self.params.pop(i
ndex - i
)
# Note the shift when we remove a param
for i
in reversed
(to_remove):
self.params.pop(i)
Escribir
Vista previa
Cargando…
Cancelar
Guardar