summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_sys_settrace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys_settrace.py b/Lib/test/test_sys_settrace.py
index 4d88ae5fc2..b4b578cc9d 100644
--- a/Lib/test/test_sys_settrace.py
+++ b/Lib/test/test_sys_settrace.py
@@ -8,7 +8,7 @@ import gc
from functools import wraps
class tracecontext:
- """Contex manager that traces its enter and exit."""
+ """Context manager that traces its enter and exit."""
def __init__(self, output, value):
self.output = output
self.value = value