diff options
| author | Sergey B Kirpichev <skirpichev@gmail.com> | 2024-08-19 19:01:58 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-19 19:01:58 (GMT) |
| commit | c8f4069ab1602a1f67239fef0e11cc3e72c0045d (patch) | |
| tree | 958e6704cd0102ea848a511fec9f7d8f50cc9dd7 /Lib/idlelib/pyshell.py | |
| parent | 21399a096302ea577efd9a12c2f08b4458d095bd (diff) | |
| download | cpython-c8f4069ab1602a1f67239fef0e11cc3e72c0045d.zip cpython-c8f4069ab1602a1f67239fef0e11cc3e72c0045d.tar.gz cpython-c8f4069ab1602a1f67239fef0e11cc3e72c0045d.tar.bz2 | |
[3.13] gh-121804: Always show error location for SyntaxError's in new repl (GH-121886) (#123148)
(cherry picked from commit 354d55eb1fa40f272419aa6459ee5d2c4804c8ea)
Diffstat (limited to 'Lib/idlelib/pyshell.py')
| -rwxr-xr-x | Lib/idlelib/pyshell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/pyshell.py b/Lib/idlelib/pyshell.py index d8b2652..e882c6c 100755 --- a/Lib/idlelib/pyshell.py +++ b/Lib/idlelib/pyshell.py @@ -706,7 +706,7 @@ class ModifiedInterpreter(InteractiveInterpreter): del _filename, _sys, _dirname, _dir \n""".format(filename)) - def showsyntaxerror(self, filename=None): + def showsyntaxerror(self, filename=None, **kwargs): """Override Interactive Interpreter method: Use Colorizing Color the offending position instead of printing it and pointing at it |
