Skip to content

Commit 8a767fb

Browse files
[3.14] gh-138081: fix some dead links in InternalDocs (GH-138082) (#138781)
Co-authored-by: yihong <[email protected]>
1 parent 09b7e87 commit 8a767fb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

InternalDocs/compiler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,4 +604,4 @@ References
604604
pp. 213--227, 1997.
605605

606606
[^2]: The Zephyr Abstract Syntax Description Language.:
607-
https://www.cs.princeton.edu/research/techreps/TR-554-97
607+
https://www.cs.princeton.edu/research/techreps/254

InternalDocs/generators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Iteration
6464

6565
The [`FOR_ITER`](https://docs.python.org/dev/library/dis.html#opcode-FOR_ITER)
6666
instruction calls `__next__` on the iterator which is on the top of the stack,
67-
and pushes the result to the stack. It has [`specializations`](adaptive.md)
67+
and pushes the result to the stack. It has [`specializations`](interpreter.md)
6868
for a few common iterator types, including `FOR_ITER_GEN`, for iterating over
6969
a generator. `FOR_ITER_GEN` bypasses the call to `__next__`, and instead
7070
directly pushes the generator stack and resumes its execution from the

InternalDocs/jit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ When the full jit is enabled (python was configured with
8989
[`--enable-experimental-jit`](https://docs.python.org/dev/using/configure.html#cmdoption-enable-experimental-jit),
9090
the uop executor's `jit_code` field is populated with a pointer to a compiled
9191
C function that implements the executor logic. This function's signature is
92-
defined by `jit_func` in [`pycore_jit.h`](Include/internal/pycore_jit.h).
92+
defined by `jit_func` in [`pycore_jit.h`](../Include/internal/pycore_jit.h).
9393
When the executor is invoked by `ENTER_EXECUTOR`, instead of jumping to
9494
the uop interpreter at `tier2_dispatch`, the executor runs the function
9595
that `jit_code` points to. This function returns the instruction pointer

0 commit comments

Comments
 (0)