[Python-checkins] r74815 - python/branches/py3k/Doc/reference/simple_stmts.rst

ezio.melotti python-checkins at python.org
Wed Sep 16 03:18:28 CEST 2009


Author: ezio.melotti
Date: Wed Sep 16 03:18:27 2009
New Revision: 74815

Log:
#6910 - for->or typo

Modified:
   python/branches/py3k/Doc/reference/simple_stmts.rst

Modified: python/branches/py3k/Doc/reference/simple_stmts.rst
==============================================================================
--- python/branches/py3k/Doc/reference/simple_stmts.rst	(original)
+++ python/branches/py3k/Doc/reference/simple_stmts.rst	Wed Sep 16 03:18:27 2009
@@ -798,7 +798,7 @@
 
 The :keyword:`from` form with ``*`` may only occur in a module scope.  The wild
 card form of import --- ``import *`` --- is only allowed at the module level.
-Attempting to use it in class for function definitions will raise a
+Attempting to use it in class or function definitions will raise a
 :exc:`SyntaxError`.
 
 .. index::


More information about the Python-checkins mailing list