We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8dbcd2 commit 7b29969Copy full SHA for 7b29969
1 file changed
trepan/processor/command/list.py
@@ -95,6 +95,10 @@ def run(self, args):
95
if filename is None:
96
return
97
resolved_name = pyficache.resolve_name_to_path(filename)
98
+ if "<string>" == resolved_name:
99
+ if remapped_file := pyficache.main.code2tempfile.get(curframe.f_code):
100
+ filename = resolved_name = remapped_file
101
+
102
if not osp.exists(resolved_name):
103
# See of resuled_filename is a module name:
104
# START HERE with try: eval, except
0 commit comments