diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2021-11-19 15:40:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-19 15:40:18 (GMT) |
commit | d64659d8cdd90bf52950563c945b30b5f0ca8dd2 (patch) | |
tree | c745ea3d8a9403e972b1b5e55ec74e4ddf6a45ce /Python | |
parent | 337cb480e9dc1d27594ebd87a0045d00ec8b1c3a (diff) | |
download | cpython-d64659d8cdd90bf52950563c945b30b5f0ca8dd2.zip cpython-d64659d8cdd90bf52950563c945b30b5f0ca8dd2.tar.gz cpython-d64659d8cdd90bf52950563c945b30b5f0ca8dd2.tar.bz2 |
Fix link to exception handling notes (GH-29617)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 1ae4b65..40bd1fd 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -6983,7 +6983,7 @@ assemble_emit_exception_table_item(struct assembler *a, int value, int msb) write_except_byte(a, (value&0x3f) | msb); } -/* See Objects/exception_table_notes.txt for details of layout */ +/* See Objects/exception_handling_notes.txt for details of layout */ #define MAX_SIZE_OF_ENTRY 20 static int |