[pyar] Una forma menos horrible?

Tordek kedrot en gmail.com
Vie Jul 2 15:36:50 ART 2010


2010/7/2 Andrés Gattinoni <andresgattinoni en gmail.com>
>
> Se les ocurre una forma menos horrible y quizás más pythonica de hacer esto?
>
> http://pastebin.com/xmyRiMAV

Lo primero que se me ocurre es:

    if all(files):
        return True
    elif not any(files):
        return False
    else:
        error_str = "Integrity error: the address '%s' is in %s but
not in %s" % \
                        (address, \
                        ", ".join(address for address, set in
files.iteritems() if set), \
                        ", ".join(address for address, set in
files.iteritems() if not set)))
> _______________________________________________
> pyar mailing list pyar en python.org.ar
> http://listas.python.org.ar/listinfo/pyar
>
> PyAr - Python Argentina - Sitio web: http://www.python.org.ar/



More information about the pyar mailing list