diff --git a/Include/internal/pycore_code.h b/Include/internal/pycore_code.h index 6d45d5f0c40..fa0e0bd01c9 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 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