From 4eb3de44a13bf5d8e2c5a53672b4e9072e9623c0 Mon Sep 17 00:00:00 2001 From: gfyoung Date: Wed, 27 Dec 2017 18:35:47 -0800 Subject: [PATCH] Skip Issue: contex --> context Minor spelling error in test_sys_settrace.py in gh-4991 --- Lib/test/test_sys_settrace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_sys_settrace.py b/Lib/test/test_sys_settrace.py index 4d88ae5fc2e32f..b4b578cc9ddc8d 100644 --- a/Lib/test/test_sys_settrace.py +++ b/Lib/test/test_sys_settrace.py @@ -8,7 +8,7 @@ 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