Commit 9a34d8e1 authored by Jérome Perrin's avatar Jérome Perrin

patches/python: fix linecache for python scripts on py3

parent 095a8a85
Pipeline #33766 canceled with stage
in 0 seconds
...@@ -143,8 +143,7 @@ def patch_linecache(): ...@@ -143,8 +143,7 @@ def patch_linecache():
if module_globals is None: if module_globals is None:
module_globals = get_globals(sys._getframe(1)) module_globals = get_globals(sys._getframe(1))
# Get source code of ZODB Components following PEP 302, when # Get source code of ZODB Components following PEP 302
# cache is not pre-filled by lazycache.
if (filename.startswith('<portal_components/') and if (filename.startswith('<portal_components/') and
module_globals is not None): module_globals is not None):
data = None data = None
...@@ -158,15 +157,16 @@ def patch_linecache(): ...@@ -158,15 +157,16 @@ def patch_linecache():
pass pass
return data.splitlines(True) if data is not None else () return data.splitlines(True) if data is not None else ()
# in-ZODB python scripts if module_globals is not None:
if basename(filename) in ('Script (Python)', 'ERP5 Python Script', 'ERP5 Workflow Script'): # in-ZODB python scripts
try: if basename(filename) in ('Script (Python)', 'ERP5 Python Script', 'ERP5 Workflow Script'):
script = module_globals['script'] try:
if script._p_jar.opened: script = module_globals['script']
return script.body().splitlines(True) if script._p_jar.opened:
except Exception: return script.body().splitlines(True)
pass except Exception:
return () pass
return ()
# TALES expressions # TALES expressions
x = expr_search(filename) x = expr_search(filename)
...@@ -190,6 +190,30 @@ def patch_linecache(): ...@@ -190,6 +190,30 @@ def patch_linecache():
# reconsider), for now, we add an arbitrary prefix for cache. # reconsider), for now, we add an arbitrary prefix for cache.
if (filename.startswith('<') and filename.endswith('>')): if (filename.startswith('<') and filename.endswith('>')):
filename = 'erp5-linecache://' + filename filename = 'erp5-linecache://' + filename
# For python scripts, insert a fake PEP302 loader so that
# linecache can find the source code
if basename(filename) in (
'Script (Python)',
'ERP5 Python Script',
'ERP5 Workflow Script',
) and module_globals is not None:
script = module_globals['script']
body = 'Error reading lines (see %s)' % __file__
if script._p_jar.opened:
body = script.body()
class PythonScriptLoader:
def __init__(self, filename, body):
self.filename = filename
self.body = body
def get_source(self, name, *args, **kw):
return self.body
assert '__loader___' not in module_globals
module_globals['__loader__'] = PythonScriptLoader(filename, body)
return linecache_lazycache(filename, module_globals) return linecache_lazycache(filename, module_globals)
linecache.lazycache = lazycache linecache.lazycache = lazycache
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment