]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#6910 - for->or typo
authorEzio Melotti <ezio.melotti@gmail.com>
Wed, 16 Sep 2009 01:18:27 +0000 (01:18 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Wed, 16 Sep 2009 01:18:27 +0000 (01:18 +0000)
Doc/reference/simple_stmts.rst

index 7387da72e91d738b4992bdb56b340011c5abea93..46eea2081ccf1e4a9955bf05f4c6940e5dc2a600 100644 (file)
@@ -798,7 +798,7 @@ modules which were imported and used within the module).
 
 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::