Skip to content

Commit 2b6f5c3

Browse files
authored
gh-102114: Make dis print more concise tracebacks for syntax errors in str inputs (#102115)
1 parent 8af8f52 commit 2b6f5c3

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

Lib/dis.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def _try_compile(source, name):
6464
expect code objects
6565
"""
6666
try:
67-
c = compile(source, name, 'eval')
67+
return compile(source, name, 'eval')
6868
except SyntaxError:
69-
c = compile(source, name, 'exec')
70-
return c
69+
pass
70+
return compile(source, name, 'exec')
7171

7272
def dis(x=None, *, file=None, depth=None, show_caches=False, adaptive=False):
7373
"""Disassemble classes, methods, functions, and other compiled objects.

Lib/test/test_dis.py

+7
Original file line numberDiff line numberDiff line change
@@ -1067,6 +1067,13 @@ def check(expected, **kwargs):
10671067
check(dis_nested_2, depth=None)
10681068
check(dis_nested_2)
10691069

1070+
def test__try_compile_no_context_exc_on_error(self):
1071+
# see gh-102114
1072+
try:
1073+
dis._try_compile(")", "")
1074+
except Exception as e:
1075+
self.assertIsNone(e.__context__)
1076+
10701077
@staticmethod
10711078
def code_quicken(f, times=ADAPTIVE_WARMUP_DELAY):
10721079
for _ in range(times):
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Functions in the :mod:`dis` module that accept a source code string as argument now print a more concise traceback when the string contains a syntax or indentation error.

0 commit comments

Comments
 (0)