https://github.com/python/cpython/commit/097fc12149cbe7b336bdb3aad57e622de799611c
commit: 097fc12149cbe7b336bdb3aad57e622de799611c
branch: main
author: Bartosz SÅ‚awecki <[email protected]>
committer: ZeroIntensity <[email protected]>
date: 2025-09-15T04:53:13-04:00
summary:

Fix typo in stack_protection.md (GH-138876)

files:
M InternalDocs/stack_protection.md

diff --git a/InternalDocs/stack_protection.md b/InternalDocs/stack_protection.md
index 5e35b2d8195bd1..fa025bd930f74e 100644
--- a/InternalDocs/stack_protection.md
+++ b/InternalDocs/stack_protection.md
@@ -4,7 +4,7 @@ CPython protects against stack overflow in the form of runaway, 
or just very dee
 Protection against pure Python stack recursion has existed since very early, 
but in 3.12 we added protection against stack overflow
 in C code. This was initially implemented using a counter and later improved 
in 3.14 to use the actual stack depth.
 For those platforms that support it (Windows, Mac, and most Linuxes) we query 
the operating system to find the stack bounds.
-For other platforms we use conserative estimates.
+For other platforms we use conservative estimates.
 
 
 The C stack looks like this:

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to