Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Kirill Smelkov
ZEO
Commits
612505f5
Commit
612505f5
authored
Apr 02, 2002
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add XXX comment about _oid_unreferenced.
parent
5cd55aa4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
src/Persistence/cPersistence.c
src/Persistence/cPersistence.c
+2
-1
src/ZODB/cPersistence.c
src/ZODB/cPersistence.c
+2
-1
src/persistent/cPersistence.c
src/persistent/cPersistence.c
+2
-1
No files found.
src/Persistence/cPersistence.c
View file @
612505f5
...
...
@@ -14,7 +14,7 @@
static
char
cPersistence_doc_string
[]
=
"Defines Persistent mixin class for persistent objects.
\n
"
"
\n
"
"$Id: cPersistence.c,v 1.5
2 2002/04/01 23:36:33
jeremy Exp $
\n
"
;
"$Id: cPersistence.c,v 1.5
3 2002/04/02 06:01:22
jeremy Exp $
\n
"
;
#include "cPersistence.h"
...
...
@@ -187,6 +187,7 @@ deallocated(cPersistentObject *self)
if
(
self
->
cache
)
{
PyObject
*
v
;
/* XXX should just add this to the C API struct */
v
=
PyObject_CallMethod
((
PyObject
*
)
self
->
cache
,
"_oid_unreferenced"
,
"O"
,
self
->
oid
);
/* XXX What does the comment below mean? */
...
...
src/ZODB/cPersistence.c
View file @
612505f5
...
...
@@ -14,7 +14,7 @@
static
char
cPersistence_doc_string
[]
=
"Defines Persistent mixin class for persistent objects.
\n
"
"
\n
"
"$Id: cPersistence.c,v 1.5
2 2002/04/01 23:36:33
jeremy Exp $
\n
"
;
"$Id: cPersistence.c,v 1.5
3 2002/04/02 06:01:22
jeremy Exp $
\n
"
;
#include "cPersistence.h"
...
...
@@ -187,6 +187,7 @@ deallocated(cPersistentObject *self)
if
(
self
->
cache
)
{
PyObject
*
v
;
/* XXX should just add this to the C API struct */
v
=
PyObject_CallMethod
((
PyObject
*
)
self
->
cache
,
"_oid_unreferenced"
,
"O"
,
self
->
oid
);
/* XXX What does the comment below mean? */
...
...
src/persistent/cPersistence.c
View file @
612505f5
...
...
@@ -14,7 +14,7 @@
static
char
cPersistence_doc_string
[]
=
"Defines Persistent mixin class for persistent objects.
\n
"
"
\n
"
"$Id: cPersistence.c,v 1.5
2 2002/04/01 23:36:33
jeremy Exp $
\n
"
;
"$Id: cPersistence.c,v 1.5
3 2002/04/02 06:01:22
jeremy Exp $
\n
"
;
#include "cPersistence.h"
...
...
@@ -187,6 +187,7 @@ deallocated(cPersistentObject *self)
if
(
self
->
cache
)
{
PyObject
*
v
;
/* XXX should just add this to the C API struct */
v
=
PyObject_CallMethod
((
PyObject
*
)
self
->
cache
,
"_oid_unreferenced"
,
"O"
,
self
->
oid
);
/* XXX What does the comment below mean? */
...
...
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