mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Fix a code block in __future__ docs.
This commit is contained in:
parent
510eab5965
commit
06291185e1
1 changed files with 2 additions and 3 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
:mod:`__future__` --- Future statement definitions
|
||||
==================================================
|
||||
|
||||
|
@ -22,8 +21,8 @@
|
|||
|
||||
Each statement in :file:`__future__.py` is of the form::
|
||||
|
||||
FeatureName = "_Feature(" OptionalRelease "," MandatoryRelease ","
|
||||
CompilerFlag ")"
|
||||
FeatureName = _Feature(OptionalRelease, MandatoryRelease,
|
||||
CompilerFlag)
|
||||
|
||||
|
||||
where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both are
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue