Index: Doc/library/__future__.rst =================================================================== --- Doc/library/__future__.rst (revision 74188) +++ Doc/library/__future__.rst (working copy) @@ -56,8 +56,37 @@ dynamically compiled code. This flag is stored in the :attr:`compiler_flag` attribute on :class:`_Feature` instances. -No feature description will ever be deleted from :mod:`__future__`. +No feature description will ever be deleted from :mod:`__future__`. Since its +introduction in Python 2.1 the following features have found its way into the +language using this mechanism: ++------------------+----------------------+---------------------------------------------+ +| feature | version | effect | +| +----------+-----------+ | +| | optional | mandatory | | ++==================+==========+===========+=============================================+ +| nested_scopes | 2.1.0b1 | 2.2.0a0 | `227`:pep:\ : | +| | | | *Statically Nested Scopes* | ++------------------+----------+-----------+---------------------------------------------+ +| generators | 2.2.0a1 | 2.3.0 | `255`:pep:\ : | +| | | | *Simple Generators* | ++------------------+----------+-----------+---------------------------------------------+ +| division | 2.2.0a2 | 3.0.0a0 | `238`:pep:\ : | +| | | | *Changing the Division Operator* | ++------------------+----------+-----------+---------------------------------------------+ +| absolute_import | 2.5.0a1 | 2.7.0a0 | `328`:pep:\ : | +| | | | *Imports: Multi-Line and Absolute/Relative* | ++------------------+----------+-----------+---------------------------------------------+ +| with_statement | 2.5.0a1 | 2.6.0a0 | `343`:pep:\ : | +| | | | *The "with" Statement* | ++------------------+----------+-----------+---------------------------------------------+ +| print_function | 2.6.0a2 | 3.0.0a0 | `3105`:pep:\ : | +| | | | *Make print a function* | ++------------------+----------+-----------+---------------------------------------------+ +| unicode_literals | 2.6.0a2 | 3.0.0a0 | `3112`:pep:\ : | +| | | | *Bytes literals in Python 3000* | ++------------------+----------+-----------+---------------------------------------------+ + .. seealso:: :ref:`future`