From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 20 Apr 2020 02:36:03 +0000 (-0700) Subject: Fix typo in Lib/tracepack.py (GH-19605) X-Git-Tag: v3.8.3rc1~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=984a567cbb2dc4645f2baf72f608d44c9173d190;p=thirdparty%2FPython%2Fcpython.git Fix typo in Lib/tracepack.py (GH-19605) Typo fix: "emites" -> "emit". (cherry picked from commit df8913f7c48d267efd662e8ffd9496595115eee8) Co-authored-by: Galden --- diff --git a/Lib/traceback.py b/Lib/traceback.py index ab35da94b51e..5ef3be74be74 100644 --- a/Lib/traceback.py +++ b/Lib/traceback.py @@ -549,7 +549,7 @@ class TracebackException: The return value is a generator of strings, each ending in a newline. Normally, the generator emits a single string; however, for - SyntaxError exceptions, it emites several lines that (when + SyntaxError exceptions, it emits several lines that (when printed) display detailed information about where the syntax error occurred.