diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2025-03-03 04:38:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-03 06:38:49 -0500 |
commit | efbc5929ca022661bd311b075116746d294bd71b (patch) | |
tree | 4e3f18f531ad02a7e1f4b13d6c8666ec79289075 /Python/assemble.c | |
parent | 8f11af45de68459d9d4051812aa5ddaf6a98dcb2 (diff) | |
download | cpython-efbc5929ca022661bd311b075116746d294bd71b.tar.gz cpython-efbc5929ca022661bd311b075116746d294bd71b.zip |
docs: internal notes have moved, correct references (#130762)
Diffstat (limited to 'Python/assemble.c')
-rw-r--r-- | Python/assemble.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/assemble.c b/Python/assemble.c index 6dcac332f07..070be1ca54e 100644 --- a/Python/assemble.c +++ b/Python/assemble.c @@ -126,7 +126,7 @@ assemble_emit_exception_table_item(struct assembler *a, int value, int msb) write_except_byte(a, (value&0x3f) | msb); } -/* See Objects/exception_handling_notes.txt for details of layout */ +/* See InternalDocs/exception_handling.md for details of layout */ #define MAX_SIZE_OF_ENTRY 20 static int |