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
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
a4edfc08
Commit
a4edfc08
authored
Mar 28, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patches/python: update linecache patch for python3
parent
0d0d8af8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
2 deletions
+22
-2
product/ERP5Type/patches/python.py
product/ERP5Type/patches/python.py
+22
-2
No files found.
product/ERP5Type/patches/python.py
View file @
a4edfc08
...
...
@@ -143,7 +143,8 @@ def patch_linecache():
if
module_globals
is
None
:
module_globals
=
get_globals
(
sys
.
_getframe
(
1
))
# Get source code of ZODB Components following PEP 302
# Get source code of ZODB Components following PEP 302, when
# cache is not pre-filled by lazycache.
if
(
filename
.
startswith
(
'<portal_components/'
)
and
module_globals
is
not
None
):
data
=
None
...
...
@@ -155,9 +156,9 @@ def patch_linecache():
data
=
get_source
(
name
)
except
(
ImportError
,
AttributeError
):
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'
]
...
...
@@ -166,13 +167,32 @@ def patch_linecache():
except
Exception
:
pass
return
()
# TALES expressions
x
=
expr_search
(
filename
)
if
x
:
return
x
.
groups
()
if
filename
.
startswith
(
'<portal_components/'
):
# use our special key for lazycache
filename
=
'erp5-linecache://'
+
filename
return
linecache_getlines
(
filename
,
module_globals
)
linecache
.
getlines
=
getlines
if
sys
.
version_info
[:
3
]
>=
(
3
,
):
linecache_lazycache
=
linecache
.
lazycache
def
lazycache
(
filename
,
module_globals
):
if
filename
:
# XXX linecache ignores files named like <this>, but this is
# what we used for portal_components filename (and it's not so
# good because it's not easy to copy paste, so we might want to
# reconsider), for now, we add an arbitrary prefix for cache.
if
(
filename
.
startswith
(
'<'
)
and
filename
.
endswith
(
'>'
)):
filename
=
'erp5-linecache://'
+
filename
return
linecache_lazycache
(
filename
,
module_globals
)
linecache
.
lazycache
=
lazycache
patch_linecache
()
import
decimal
as
_decimal
...
...
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