diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-10-26 15:32:37 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-26 15:32:37 (GMT) |
| commit | f521142b474fc327e330552b40aeffec97e1c69c (patch) | |
| tree | a2ba7b7dc1e9f53cb39fc0a009f6cf2c056874fb /Doc/tutorial/errors.rst | |
| parent | 9c6cda5ccb599bcffbb1a38744510fc654a808bb (diff) | |
| download | cpython-f521142b474fc327e330552b40aeffec97e1c69c.zip cpython-f521142b474fc327e330552b40aeffec97e1c69c.tar.gz cpython-f521142b474fc327e330552b40aeffec97e1c69c.tar.bz2 | |
[3.13] Fix a typo in ``Doc/tutorial/errors.rst`` exception output (GH-126001) (#126009)
Fix a typo in ``Doc/tutorial/errors.rst`` exception output (GH-126001)
(cherry picked from commit a78d5b32429e2399178ac838e0e62b2bd62c0af9)
Co-authored-by: Bogdana Vereha <bogdanap@github.com>
Diffstat (limited to 'Doc/tutorial/errors.rst')
| -rw-r--r-- | Doc/tutorial/errors.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index 24fa014..4c61cbb 100644 --- a/Doc/tutorial/errors.rst +++ b/Doc/tutorial/errors.rst @@ -464,7 +464,7 @@ A more complicated example:: executing finally clause Traceback (most recent call last): File "<stdin>", line 1, in <module> - divide("2", "0") + divide("2", "1") ~~~~~~^^^^^^^^^^ File "<stdin>", line 3, in divide result = x / y |
