[pyar] NOVEDADES EXCLUSIVAS PARA PyAr!!!!

david weil tenuki en gmail.com
Vie Ene 6 19:00:56 ART 2012


2012/1/6 Facundo Batista <facundobatista en gmail.com>:
> Es trivial:
>
> class DirContextM(object):
>    def __init__(self, new_dir):
>        self.new_dir = new_dir
>        self.old_dir = None
>
>    def __enter__(self):
>        self.old_dir = os.getcwd()
>        os.chdir(self.new_dir)
>
>    def __exit__(self, *_):
>        os.chdir(self.old_dir)

Eso es todo python3? (nunca lo use mucho, igualmente se que todo eso
se puede hacer en python2)

Pero, la pregunta que tenía es: ¿cuan aconsejado es usar _ ?

En un momento lo usaba bastante en los for en lo que no me interesaba
el indice por el cual estaba iterando. Sin embargo, creo que había
llegado a la conclusión de que no era muy bueno usar _.

Comentarios?

-- 
 There is no dark side of the moon really. Matter of fact it's all dark.



More information about the pyar mailing list