Fix a code block in __future__ docs.
This commit is contained in:
parent
510eab5965
commit
06291185e1
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
:mod:`__future__` --- Future statement definitions
|
:mod:`__future__` --- Future statement definitions
|
||||||
==================================================
|
==================================================
|
||||||
|
|
||||||
|
@ -22,8 +21,8 @@
|
||||||
|
|
||||||
Each statement in :file:`__future__.py` is of the form::
|
Each statement in :file:`__future__.py` is of the form::
|
||||||
|
|
||||||
FeatureName = "_Feature(" OptionalRelease "," MandatoryRelease ","
|
FeatureName = _Feature(OptionalRelease, MandatoryRelease,
|
||||||
CompilerFlag ")"
|
CompilerFlag)
|
||||||
|
|
||||||
|
|
||||||
where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both are
|
where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both are
|
||||||
|
|
Loading…
Reference in New Issue