This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: try-except-finally in the tutorial
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, quiver
Priority: normal Keywords:

Created on 2006-03-19 04:36 by quiver, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg27824 - (view) Author: George Yoshida (quiver) (Python committer) Date: 2006-03-19 04:36
Doc/tut/tut.tex describes "finally" statement as ::

  A try statement must either have one or more except 
clauses or one finally clause, but not both ...

But now that PEP 341[*] has been accepted and merged, 
this part needs a rewrite.

Adding a new section or an example using try-except-
(else-)finally will be required.

* http://www.python.org/peps/pep-0341.html
msg27825 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-03-19 11:21
Logged In: YES 
user_id=849994

I updated that section. try-except-finally should be made
clear now. [rev. 43142]

Thanks for spotting!
History
Date User Action Args
2022-04-11 14:56:16adminsetgithub: 43053
2006-03-19 04:36:02quivercreate