Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
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
Kirill Smelkov
neo
Commits
a10f8190
Commit
a10f8190
authored
Jul 27, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
e68726e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
19 deletions
+2
-19
go/zodb/zodbpy.go
go/zodb/zodbpy.go
+2
-19
No files found.
go/zodb/zodbpy.go
View file @
a10f8190
...
...
@@ -24,23 +24,6 @@ import (
pickle
"github.com/kisielk/og-rek"
)
// IPyPersistent is the interface that every in-RAM object representing Python ZODB object implements.
// XXX kill
type
IPyPersistent
interface
{
IPersistent
//PyClass() pickle.Class // python class of this object
// PyState() interface{} // object state. python passes this to pyclass.__new__().__setstate__()
/*
// IPyPersistent must be stateful for persistency to work
// XXX try to move out of IPyPersistent? Rationale: we do not want e.g. PySetState to
// be available to user who holds IPyPersistent interface: it is confusing to have
// both PActivate and PySetState at the same time.
PyStateful
*/
}
// PyPersistent is common base implementation for in-RAM representation of ZODB Python objects.
type
PyPersistent
struct
{
*
Persistent
// XXX remove ptr
...
...
@@ -68,9 +51,9 @@ type PyStateful interface {
// this should be always safe because we always create pyObjects via
// newGhost which passes IPyPersistent as instance to IPersistent. XXX no longer true
//func (pyobj *PyPersistent) pyinstance() IPyPersistent {
func
(
pyobj
*
PyPersistent
)
pyinstance
()
interface
{
IP
yP
ersistent
;
Ghostable
;
PyStateful
}
{
func
(
pyobj
*
PyPersistent
)
pyinstance
()
interface
{
IPersistent
;
Ghostable
;
PyStateful
}
{
//return pyobj.instance.(IPyPersistent)
return
pyobj
.
instance
.
(
interface
{
IP
yP
ersistent
;
Ghostable
;
PyStateful
})
return
pyobj
.
instance
.
(
interface
{
IPersistent
;
Ghostable
;
PyStateful
})
}
func
(
pyobj
*
PyPersistent
)
SetState
(
state
*
mem
.
Buf
)
error
{
...
...
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