diff options
author | Fred Drake <fdrake@acm.org> | 2002-04-17 03:41:50 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-04-17 03:41:50 (GMT) |
commit | 70b3831697c251c1690eafa92662ee6a183b05d8 (patch) | |
tree | 2b86043b28481baacf01ad86502dbff2a849df03 | |
parent | 3d0b697d70789be6fed03ef3311a1006962d260a (diff) | |
download | cpython-70b3831697c251c1690eafa92662ee6a183b05d8.zip cpython-70b3831697c251c1690eafa92662ee6a183b05d8.tar.gz cpython-70b3831697c251c1690eafa92662ee6a183b05d8.tar.bz2 |
Adjust markup to worm around tool limitations; the "m" in "model" was being
dropped in the HTML formatted version.
Reported by Mike Coleman.
-rw-r--r-- | Doc/ref/ref4.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex index 7176f20..1f8b237 100644 --- a/Doc/ref/ref4.tex +++ b/Doc/ref/ref4.tex @@ -171,7 +171,7 @@ statement. The \keyword{try} ... \keyword{finally} statement specifies cleanup code which does not handle the exception, but is executed whether an exception occurred or not in the preceding code. -Python uses the ``termination'' \index{termination model}model of +Python uses the ``termination''\index{termination model} model of error handling: an exception handler can find out what happened and continue execution at an outer level, but it cannot repair the cause of the error and retry the failing operation (except by re-entering |