summaryrefslogtreecommitdiff
path: root/Lib/test/crashers
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-03-15 05:18:48 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2011-03-15 05:18:48 +0200
commit42da663e6fe7ecbb89b17d596c76812a91bb99a4 (patch)
treef660a093d1eb0841656b9b10173589f357ec0484 /Lib/test/crashers
parentf6db0bbbeefa1bde9fd09c53e7c6bf0e57481590 (diff)
downloadcpython-git-42da663e6fe7ecbb89b17d596c76812a91bb99a4.tar.gz
#11515: fix several typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Lib/test/crashers')
-rw-r--r--Lib/test/crashers/recursion_limit_too_high.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/crashers/recursion_limit_too_high.py b/Lib/test/crashers/recursion_limit_too_high.py
index 1fa4d32543..ec64936a5d 100644
--- a/Lib/test/crashers/recursion_limit_too_high.py
+++ b/Lib/test/crashers/recursion_limit_too_high.py
@@ -5,7 +5,7 @@
# file handles.
# The point of this example is to show that sys.setrecursionlimit() is a
-# hack, and not a robust solution. This example simply exercices a path
+# hack, and not a robust solution. This example simply exercises a path
# where it takes many C-level recursions, consuming a lot of stack
# space, for each Python-level recursion. So 1000 times this amount of
# stack space may be too much for standard platforms already.