Browse Source

Removing old text that is no longer true.

Thanks Vladimir for bringing this to notice!
Swaroop C H 12 years ago
parent
commit
8f2c688126
1 changed files with 2 additions and 5 deletions
  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
 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
 import time