浏览代码

Removing old text that is no longer true.

Thanks Vladimir for bringing this to notice!
Swaroop C H 12 年之前
父节点
当前提交
8f2c688126
共有 1 个文件被更改,包括 2 次插入5 次删除
  1. 2 5
      15-exceptions.md

+ 2 - 5
15-exceptions.md

@@ -168,12 +168,9 @@ appropriate message to the user.
 
 
 Suppose you are reading a file in your program. How do you ensure that
 Suppose you are reading a file in your program. How do you ensure that
 the file object is closed properly whether or not an exception was
 the file object is closed properly whether or not an exception was
-raised? This can be done using the `finally` block. Note that you can
-use an `except` clause along with a `finally` block for the same
-corresponding `try` block. You will have to embed one within another
-if you want to use both.
+raised? This can be done using the `finally` block.
 
 
-Save as `finally.py`:
+Save this program as `finally.py`:
 
 
 ~~~python
 ~~~python
 import time
 import time