From cb7de8adfa1110b3440b02490dd9fa1b2f4b94c1 Mon Sep 17 00:00:00 2001 From: Rune Tynan Date: Wed, 3 Apr 2019 17:52:34 -0400 Subject: [PATCH] Fix typo in FrameType 3.7 attributes (#2899) --- stdlib/3/types.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3/types.pyi b/stdlib/3/types.pyi index 9d121d12d..290b646d8 100644 --- a/stdlib/3/types.pyi +++ b/stdlib/3/types.pyi @@ -179,7 +179,7 @@ class FrameType: f_locals = ... # type: Dict[str, Any] f_trace = ... # type: Callable[[], None] if sys.version_info >= (3, 7): - f_frace_lines: bool + f_trace_lines: bool f_trace_opcodes: bool def clear(self) -> None: ...