Backed out changeset: c4aef26d128b

Unknown interpreted text role "kbd".
This commit is contained in:
Serhiy Storchaka 2016-05-03 14:10:04 +03:00
parent cc1c734886
commit 4088a7dddc
3 changed files with 3 additions and 3 deletions

View File

@ -1111,7 +1111,7 @@ Programming Recommendations
A bare ``except:`` clause will catch SystemExit and
KeyboardInterrupt exceptions, making it harder to interrupt a
program with :kbd:`Control-C`, and can disguise other problems. If you
program with Control-C, and can disguise other problems. If you
want to catch all exceptions that signal program errors, use
``except Exception:`` (bare except is equivalent to ``except
BaseException:``).

View File

@ -134,7 +134,7 @@ interpreter should exit will not be caught and thus be allowed to
propagate up and allow the interpreter to terminate.
KeyboardInterrupt has been moved since users typically expect an
application to exit when they press the interrupt key (usually :kbd:`Ctrl-C`).
application to exit when they press the interrupt key (usually Ctrl-C).
If people have overly broad ``except`` clauses the expected behaviour
does not occur.

View File

@ -353,7 +353,7 @@ as the timeout. So the sleep can be interrupted by ``SIGINT``.
interrupted.
``PyOS_StdioReadline()`` also used ``sigint_event`` when ``fgets()``
failed to check if :kbd:`Ctrl-C` or :kbd:`Ctrl-Z` was pressed.
failed to check if Ctrl-C or Ctrl-Z was pressed.
Links