From efbc5929ca022661bd311b075116746d294bd71b Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 3 Mar 2025 04:38:49 -0700 Subject: [PATCH] docs: internal notes have moved, correct references (#130762) --- Include/internal/pycore_code.h | 2 +- Python/assemble.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Include/internal/pycore_code.h b/Include/internal/pycore_code.h index 6d45d5f0c407..fa0e0bd01c99 100644 --- a/Include/internal/pycore_code.h +++ b/Include/internal/pycore_code.h @@ -474,7 +474,7 @@ read_obj(uint16_t *p) return val; } -/* See Objects/exception_handling_notes.txt for details. +/* See InternalDocs/exception_handling.md for details. */ static inline unsigned char * parse_varint(unsigned char *p, int *result) { diff --git a/Python/assemble.c b/Python/assemble.c index 6dcac332f076..070be1ca54e3 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 -- 2.47.3