[Python] ciclo while

Carlo Miron miron a python.it
Mar 6 Ago 2013 11:39:13 CEST


Il 06 agosto 2013 11:04, Marco Mariani <birbag a gmail.com> ha scritto::

> a parte il < invece di <=, non mi e' chiaro lo use case per python 2.5.
> posso capire il 4, ma il 5?

Perche` ``<=``?

Due delle feature che importo sono definite in python 2.6, quindi sono
escluse solo le versioni strettamente precedenti::

  nested_scopes = _Feature((2, 1, 0, "beta",  1),
                           (2, 2, 0, "alpha", 0),
                           CO_NESTED)

  generators = _Feature((2, 2, 0, "alpha", 1),
                        (2, 3, 0, "final", 0),
                        CO_GENERATOR_ALLOWED)

  division = _Feature((2, 2, 0, "alpha", 2),
                      (3, 0, 0, "alpha", 0),
                      CO_FUTURE_DIVISION)

  absolute_import = _Feature((2, 5, 0, "alpha", 1),
                             (3, 0, 0, "alpha", 0),
                             CO_FUTURE_ABSOLUTE_IMPORT)

  with_statement = _Feature((2, 5, 0, "alpha", 1),
                            (2, 6, 0, "alpha", 0),
                            CO_FUTURE_WITH_STATEMENT)

  print_function = _Feature((2, 6, 0, "alpha", 2),
                            (3, 0, 0, "alpha", 0),
                            CO_FUTURE_PRINT_FUNCTION)

  unicode_literals = _Feature((2, 6, 0, "alpha", 2),
                              (3, 0, 0, "alpha", 0),
                              CO_FUTURE_UNICODE_LITERALS)

  barry_as_FLUFL = _Feature((3, 1, 0, "alpha", 2),
                           (3, 9, 0, "alpha", 0),
                           CO_FUTURE_BARRY_AS_BDFL)

O mi sfugge qualcosa di stupido :-?

-- 
© 2013
::

    R
 K-<M>-S
    L


Maggiori informazioni sulla lista Python