Skip to content

Commit 097fc12

Browse files
authored
Fix typo in stack_protection.md (pythonGH-138876)
1 parent 481588a commit 097fc12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InternalDocs/stack_protection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CPython protects against stack overflow in the form of runaway, or just very dee
44
Protection against pure Python stack recursion has existed since very early, but in 3.12 we added protection against stack overflow
55
in C code. This was initially implemented using a counter and later improved in 3.14 to use the actual stack depth.
66
For those platforms that support it (Windows, Mac, and most Linuxes) we query the operating system to find the stack bounds.
7-
For other platforms we use conserative estimates.
7+
For other platforms we use conservative estimates.
88

99

1010
The C stack looks like this:

0 commit comments

Comments
 (0)