diff options
author | Fred Drake <fdrake@acm.org> | 2008-12-04 15:28:51 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2008-12-04 15:28:51 +0000 |
commit | 9baee31a44f0d67f3704479ddceda4e2679bff5b (patch) | |
tree | 2d940948fb060cec53403df80045119fc583ffac /Doc/whatsnew | |
parent | 2982c32a006b14ae8c04f1a0551ab21a1a1778b7 (diff) | |
download | cpython-git-9baee31a44f0d67f3704479ddceda4e2679bff5b.tar.gz |
- fix markup error
- remove silly emoticon
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.0.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index 7f4a89f3e8..b6ffa36187 100644 --- a/Doc/whatsnew/3.0.rst +++ b/Doc/whatsnew/3.0.rst @@ -704,7 +704,7 @@ new powerful features added: * :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 @@ new powerful features added: 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 |