Explorar o código

Removing old text that is no longer true.

Thanks Vladimir for bringing this to notice!
Swaroop C H %!s(int64=12) %!d(string=hai) anos
pai
achega
8f2c688126
Modificáronse 1 ficheiros con 2 adicións e 5 borrados
  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