Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Carlos Ramos Carreño
erp5
Commits
0572bf5d
Commit
0572bf5d
authored
Mar 29, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patches/python: fix linecache for python scripts on py3
parent
7ca4ff9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
11 deletions
+34
-11
product/ERP5Type/patches/python.py
product/ERP5Type/patches/python.py
+34
-11
No files found.
product/ERP5Type/patches/python.py
View file @
0572bf5d
...
...
@@ -143,8 +143,7 @@ def patch_linecache():
if
module_globals
is
None
:
module_globals
=
get_globals
(
sys
.
_getframe
(
1
))
# Get source code of ZODB Components following PEP 302, when
# cache is not pre-filled by lazycache.
# Get source code of ZODB Components following PEP 302
if
(
filename
.
startswith
(
'<portal_components/'
)
and
module_globals
is
not
None
):
data
=
None
...
...
@@ -158,15 +157,16 @@ def patch_linecache():
pass
return
data
.
splitlines
(
True
)
if
data
is
not
None
else
()
# in-ZODB python scripts
if
basename
(
filename
)
in
(
'Script (Python)'
,
'ERP5 Python Script'
,
'ERP5 Workflow Script'
):
try
:
script
=
module_globals
[
'script'
]
if
script
.
_p_jar
.
opened
:
return
script
.
body
().
splitlines
(
True
)
except
Exception
:
pass
return
()
if
module_globals
is
not
None
:
# in-ZODB python scripts
if
basename
(
filename
)
in
(
'Script (Python)'
,
'ERP5 Python Script'
,
'ERP5 Workflow Script'
):
try
:
script
=
module_globals
[
'script'
]
if
script
.
_p_jar
.
opened
:
return
script
.
body
().
splitlines
(
True
)
except
Exception
:
pass
return
()
# TALES expressions
x
=
expr_search
(
filename
)
...
...
@@ -190,6 +190,29 @@ def patch_linecache():
# reconsider), for now, we add an arbitrary prefix for cache.
if
(
filename
.
startswith
(
'<'
)
and
filename
.
endswith
(
'>'
)):
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
=
''
if
script
.
_p_jar
is
None
or
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
)
linecache
.
lazycache
=
lazycache
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment