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
141
Merge Requests
141
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
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
84b88b87
Commit
84b88b87
authored
Mar 30, 2021
by
Aurel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make it work in zope2
parent
e3ff3348
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
product/ERP5Type/tests/ERP5TypeTestCase.py
product/ERP5Type/tests/ERP5TypeTestCase.py
+2
-4
product/ZSQLCatalog/SQLCatalog.py
product/ZSQLCatalog/SQLCatalog.py
+1
-1
No files found.
product/ERP5Type/tests/ERP5TypeTestCase.py
View file @
84b88b87
...
...
@@ -1509,10 +1509,8 @@ def optimize():
# Delay the compilations of Python Scripts until they are really executed.
# Python Scripts are exported without those 2 attributes:
PythonScript
.
func_code
=
lazy_func_prop
(
'func_code'
,
None
)
PythonScript
.
func_defaults
=
lazy_func_prop
(
'func_defaults'
,
None
)
PythonScript
.
__code__
=
lazy_func_prop
(
'__code__'
,
None
)
PythonScript
.
__defaults__
=
lazy_func_prop
(
'__defaults__'
,
None
)
PythonScript
.
__code__
=
PythonScript
.
func_code
=
lazy_func_prop
(
'func_code'
,
None
)
PythonScript
.
__defaults__
=
PythonScript
.
func_defaults
=
lazy_func_prop
(
'func_defaults'
,
None
)
def
_compile
(
self
):
if
immediate_compilation
:
...
...
product/ZSQLCatalog/SQLCatalog.py
View file @
84b88b87
...
...
@@ -1446,7 +1446,7 @@ class Catalog(Folder,
if
meta_type
in
self
.
HAS_ARGUMENT_SRC_METATYPE_SET
:
return
method
.
arguments_src
.
split
()
elif
meta_type
in
self
.
HAS_FUNC_CODE_METATYPE_SET
:
return
method
.
__code__
.
co_varnames
[:
method
.
__code__
.
co_argcount
]
return
method
.
func_code
.
co_varnames
[:
method
.
func_code
.
co_argcount
]
# Note: Raising here would completely prevent indexation from working.
# Instead, let the method actually fail when called, so _catalogObjectList
# can log the error and carry on.
...
...
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