[Python-checkins] r61707 - python/trunk/Doc/library/__future__.rst

georg.brandl python-checkins at python.org
Fri Mar 21 20:14:38 CET 2008


Author: georg.brandl
Date: Fri Mar 21 20:14:38 2008
New Revision: 61707

Modified:
   python/trunk/Doc/library/__future__.rst
Log:
Fix a code block in __future__ docs.


Modified: python/trunk/Doc/library/__future__.rst
==============================================================================
--- python/trunk/Doc/library/__future__.rst	(original)
+++ python/trunk/Doc/library/__future__.rst	Fri Mar 21 20:14:38 2008
@@ -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


More information about the Python-checkins mailing list