Markup again
This commit is contained in:
parent
89d3b59399
commit
732b400eb8
|
@ -68,8 +68,8 @@ the following::
|
||||||
|
|
||||||
The same error condition (a non-existing file) gets cast as two different
|
The same error condition (a non-existing file) gets cast as two different
|
||||||
exceptions depending on which library function was called. The reason
|
exceptions depending on which library function was called. The reason
|
||||||
for this is that the `os` module exclusively raises OSError (or its
|
for this is that the ``os`` module exclusively raises OSError (or its
|
||||||
subclass WindowsError) while the `io` module mostly raises IOError.
|
subclass WindowsError) while the ``io`` module mostly raises IOError.
|
||||||
However, the user is interested in the nature of the error, not in which
|
However, the user is interested in the nature of the error, not in which
|
||||||
part of the interpreter it comes from (since the latter is obvious from
|
part of the interpreter it comes from (since the latter is obvious from
|
||||||
reading the traceback message or application source code).
|
reading the traceback message or application source code).
|
||||||
|
|
Loading…
Reference in New Issue