Discussion:
[Python-3000-checkins] r67523 - python/branches/py3k/Doc/whatsnew/3.0.rst
fred.drake
2008-12-04 15:28:52 UTC
Permalink
Author: fred.drake
Date: Thu Dec 4 16:28:51 2008
New Revision: 67523

Log:
- fix markup error
- remove silly emoticon


Modified:
python/branches/py3k/Doc/whatsnew/3.0.rst

Modified: python/branches/py3k/Doc/whatsnew/3.0.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.0.rst (original)
+++ python/branches/py3k/Doc/whatsnew/3.0.rst Thu Dec 4 16:28:51 2008
@@ -704,7 +704,7 @@

* :pep:`3110`: Catching exceptions. You must now use
:keyword:`except` *SomeException* :keyword:`as` *variable* instead
- of :keyword:`except` *SomeException*, variable*. Moreover, the
+ of :keyword:`except` *SomeException*, *variable*. Moreover, the
*variable* is explicitly deleted when the :keyword:`except` block
is left.

@@ -726,7 +726,7 @@
traceback printed when an unhandled exception occurs walks the chain
of :attr:`__cause__` and :attr:`__context__` attributes and prints a
separate traceback for each component of the chain, with the primary
- exception at the top. (Java users may recognize this behavior. :-)
+ exception at the top. (Java users may recognize this behavior.)

* :pep:`3134`: Exception objects now store their traceback as the
:attr:`__traceback__` attribute. This means that an exception

Loading...