Difference between revisions 944970 and 1106749 on eswiktionary

{{delete|Solicitado por el usuario}}
<source lang="python">
# -*- coding: utf-8 -*-
#
# (C) Rob W.W. Hooft, 2003
#     parts by [email protected] 2002/03/18
#     Purodha Blissenbach (Modifier), 2010
# (C) Pywikipedia bot team, 2003-2012
#
(contracted; show full)# cleanup all locally-defined variables
for __var in globals().keys():
    if __var.startswith("_") and not __var.startswith("__"):
        del __sys.modules[__name__].__dict__[__var]

del __var, __sys
del os, re
</source>