]> granicus.if.org Git - python/commitdiff
#6564: fix section about the two raise syntaxes.
authorGeorg Brandl <georg@python.org>
Fri, 24 Jul 2009 20:09:46 +0000 (20:09 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 24 Jul 2009 20:09:46 +0000 (20:09 +0000)
Doc/tutorial/errors.rst

index ebec952648a206b1e97510e2c61407efa00e3268..d547ef7fccc85e5d33143d830bf11e841d3b777c 100644 (file)
@@ -221,10 +221,11 @@ exception to occur. For example::
      File "<stdin>", line 1, in ?
    NameError: HiThere
 
-The first argument to :keyword:`raise` names the exception to be raised.  The
-optional second argument specifies the exception's argument.  Alternatively, the
-above could be written as ``raise NameError('HiThere')``.  Either form works
-fine, but there seems to be a growing stylistic preference for the latter.
+The argument to :keyword:`raise` is an exception class or instance to be
+raised.  There is a deprecated alternate syntax that separates class and
+constructor arguments; the above could be written as ``raise NameError,
+'HiThere'``.  Since it once was the only one available, the latter form is
+prevalent in older code.
 
 If you need to determine whether an exception was raised but don't intend to
 handle it, a simpler form of the :keyword:`raise` statement allows you to