Documentación offline Python 3.14

"__future__" --- Future statement definitions

3.14 Ver versión oficial en línea Licencia PSF-2.0Descargado el 2026-08-02

En esta página

"future" --- Future statement definitions#

Código fuente: Lib/future.py

======================================================================

Imports of the form "from future import feature" are called future statements. These are special-cased by the Python compiler to allow the use of new Python features in modules containing the future statement before the release in which the feature becomes standard.

While these future statements are given additional special meaning by the Python compiler, they are still executed like any other import statement and the "future" exists and is handled by the import system the same way any other Python module would be. This design serves three purposes:

  • Para evitar confundir las herramientas existentes que analizan las declaraciones de importación y esperan encontrar los módulos que están importando.

  • To document when incompatible changes were introduced, and when they will be --- or were --- made mandatory. This is a form of executable documentation, and can be inspected programmatically via importing "future" and examining its contents.

  • To ensure that future statements run under releases prior to Python 2.1 at least yield runtime exceptions (the import of "future" will fail, because there was no module of that name prior to 2.1).

Module Contents#

No feature description will ever be deleted from "future". Since its introduction in Python 2.1 the following features have found their way into the language using this mechanism:

+---------------------------+---------------------------+---------------------------+---------------------------+ | característica | opcional en | obligatorio en | efecto | |===========================|===========================|===========================|===========================| | future.nested_scopes | 2.1.0b1 | 2.2 | PEP 227: *Ámbitos |

| | | | anidados estáticamente* |#

| future.generators | 2.2.0a1 | 2.3 | PEP 255: *Generadores |

| | | | simples* |#

| future.division | 2.2.0a2 | 3.0 | PEP 238: *Cambio de |

| | | | operador de división* |#

| future.absolute_impo | 2.5.0a1 | 3.0 | PEP 328: | | rt | | | *Importaciones: | | | | | Multilínea y |

| | | | Absoluto/Relativo* |#

| future.with_statement | 2.5.0a1 | 2.6 | PEP 343: *The “with” |

| | | | Statement* |#

| future.print_function | 2.6.0a2 | 3.0 | PEP 3105: *Hacer de |

| future.unicode_liter | 2.6.0a2 | 3.0 | PEP 3112: *Bytes |

| als | | | literales en Python 3000* |#

| future.generator_stop | 3.5.0b1 | 3.7 | PEP 479: *Manejo de | | | | | StopIteration dentro de |

| | | | generadores* |#

| future.annotations | 3.7.0b1 | Never [1] | PEP 563: Postponed | | | | | evaluation of | | | | | annotations, PEP | | | | | 649: *Deferred | | | | | evaluation of annotations |

| | | | using descriptors* |#

class future._Feature

Cada declaración en "future.py" tiene la forma:

  FeatureName = _Feature(OptionalRelease, MandatoryRelease,
                         CompilerFlag)

donde, normalmente, OptionalRelease es menor que MandatoryRelease y ambos son 5-tuplas de la misma forma que "sys.version_info":

  (PY_MAJOR_VERSION, # the 2 in 2.1.0a3; an int
   PY_MINOR_VERSION, # the 1; an int
   PY_MICRO_VERSION, # the 0; an int
   PY_RELEASE_LEVEL, # "alpha", "beta", "candidate" or "final"; string
   PY_RELEASE_SERIAL # the 3; an int
  )

_Feature.getOptionalRelease()

OptionalRelease registra la primera versión en la que se aceptó la característica.

_Feature.getMandatoryRelease()

En el caso de un MandatoryRelease que aún no se ha producido, MandatoryRelease predice el lanzamiento en el que la característica pasará a formar parte del lenguaje.

De otro modo, MandatoryRelease registra cuándo la característica se convirtió en parte del lenguaje; en versiones en o después de este, los módulos ya no necesitan una declaración futura para usar la característica en cuestión, pero pueden continuar usando dichas importaciones.

MandatoryRelease may also be "None", meaning that a planned feature got dropped or that it is not yet decided.

_Feature.compiler_flag

CompilerFlag is the (bitfield) flag that should be passed in the fourth argument to the built-in function "compile()" to enable the feature in dynamically compiled code. This flag is stored in the "_Feature.compiler_flag" attribute on "_Feature" instances.

[1] "from future import annotations" was previously scheduled to become mandatory in Python 3.10, but the change was delayed and ultimately canceled. This feature will eventually be deprecated and removed. See PEP 649 and PEP 749.

Ver también:

Declaraciones Futuras Cómo trata el compilador las importaciones futuras.

PEP 236 - Back to the future The original proposal for the future mechanism.