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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sebastian
erp5
Commits
889d73b9
Commit
889d73b9
authored
Jan 06, 2016
by
Sebastien Robin
Committed by
Georgios Dagkakis
Mar 07, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5Type: avoid __Broken_newargs__ attribute error with ERP5 broken objects
parent
5abbc5a7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
product/ERP5Type/dynamic/lazy_class.py
product/ERP5Type/dynamic/lazy_class.py
+4
-0
No files found.
product/ERP5Type/dynamic/lazy_class.py
View file @
889d73b9
...
@@ -25,6 +25,10 @@ class ERP5BaseBroken(Broken, ERP5Base, PersistentBroken):
...
@@ -25,6 +25,10 @@ class ERP5BaseBroken(Broken, ERP5Base, PersistentBroken):
# PersistentBroken can't be reused directly
# PersistentBroken can't be reused directly
# because its « layout differs from 'GhostPortalType' »
# because its « layout differs from 'GhostPortalType' »
# This prevents serialize (ZODB) from reloading the class during commit
# (which would look for __Broken_newargs__ which is not present)
__getnewargs__
=
None
def
__metaclass__
(
name
,
base
,
d
):
def
__metaclass__
(
name
,
base
,
d
):
d
=
dict
(
PersistentBroken
.
__dict__
,
**
d
)
d
=
dict
(
PersistentBroken
.
__dict__
,
**
d
)
for
x
in
'__dict__'
,
'__metaclass__'
,
'__weakref__'
:
for
x
in
'__dict__'
,
'__metaclass__'
,
'__weakref__'
:
...
...
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