Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Zope
Commits
5eb73e87
Commit
5eb73e87
authored
Jul 27, 1998
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed _p___reinit__ to _p_deactivate.
parent
cd2a11e5
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
20 deletions
+32
-20
lib/Components/ExtensionClass/Record.c
lib/Components/ExtensionClass/Record.c
+8
-5
lib/Components/ExtensionClass/src/Record.c
lib/Components/ExtensionClass/src/Record.c
+8
-5
lib/python/Shared/DC/Record/Record.c
lib/python/Shared/DC/Record/Record.c
+8
-5
lib/python/Shared/DC/ZRDB/Record.c
lib/python/Shared/DC/ZRDB/Record.c
+8
-5
No files found.
lib/Components/ExtensionClass/Record.c
View file @
5eb73e87
...
...
@@ -10,7 +10,7 @@
static
char
Record_module_documentation
[]
=
""
"
\n
$Id: Record.c,v 1.
3 1998/01/16 21:13:2
8 jim Exp $"
"
\n
$Id: Record.c,v 1.
4 1998/07/27 13:09:5
8 jim Exp $"
;
#ifdef PERSISTENCE
...
...
@@ -141,7 +141,7 @@ Record_deal(Record *self)
#ifdef PERSISTENCE
static
PyObject
*
Record__p_
__reinit__
(
Record
*
self
,
PyObject
*
args
)
Record__p_
deactivate
(
Record
*
self
,
PyObject
*
args
)
{
Record_deal
(
self
);
self
->
schema
=
NULL
;
...
...
@@ -163,8 +163,8 @@ static struct PyMethodDef Record_methods[] = {
"__init__([v]) -- Initialize a record, possibly with state"
},
#ifdef PERSISTENCE
{
"_p_
__reinit__"
,
(
PyCFunction
)
Record__p___reinit__
,
METH_VARARGS
,
"_p_
__reinit__
() -- Reset the record's data"
{
"_p_
deactivate"
,
(
PyCFunction
)
Record__p_deactivate
,
METH_VARARGS
,
"_p_
deactivate
() -- Reset the record's data"
},
#endif
{
NULL
,
NULL
}
/* sentinel */
...
...
@@ -512,7 +512,7 @@ void
initRecord
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
3
$"
;
char
*
rev
=
"$Revision: 1.
4
$"
;
UNLESS
(
py___record_schema__
=
PyString_FromString
(
"__record_schema__"
))
return
;
...
...
@@ -551,6 +551,9 @@ initRecord()
Revision Log:
$Log: Record.c,v $
Revision 1.4 1998/07/27 13:09:58 jim
Changed _p___reinit__ to _p_deactivate.
Revision 1.3 1998/01/16 21:13:28 jim
Added extra ignored parent object argument to __init__ and
__setstate__.
...
...
lib/Components/ExtensionClass/src/Record.c
View file @
5eb73e87
...
...
@@ -10,7 +10,7 @@
static
char
Record_module_documentation
[]
=
""
"
\n
$Id: Record.c,v 1.
3 1998/01/16 21:13:2
8 jim Exp $"
"
\n
$Id: Record.c,v 1.
4 1998/07/27 13:09:5
8 jim Exp $"
;
#ifdef PERSISTENCE
...
...
@@ -141,7 +141,7 @@ Record_deal(Record *self)
#ifdef PERSISTENCE
static
PyObject
*
Record__p_
__reinit__
(
Record
*
self
,
PyObject
*
args
)
Record__p_
deactivate
(
Record
*
self
,
PyObject
*
args
)
{
Record_deal
(
self
);
self
->
schema
=
NULL
;
...
...
@@ -163,8 +163,8 @@ static struct PyMethodDef Record_methods[] = {
"__init__([v]) -- Initialize a record, possibly with state"
},
#ifdef PERSISTENCE
{
"_p_
__reinit__"
,
(
PyCFunction
)
Record__p___reinit__
,
METH_VARARGS
,
"_p_
__reinit__
() -- Reset the record's data"
{
"_p_
deactivate"
,
(
PyCFunction
)
Record__p_deactivate
,
METH_VARARGS
,
"_p_
deactivate
() -- Reset the record's data"
},
#endif
{
NULL
,
NULL
}
/* sentinel */
...
...
@@ -512,7 +512,7 @@ void
initRecord
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
3
$"
;
char
*
rev
=
"$Revision: 1.
4
$"
;
UNLESS
(
py___record_schema__
=
PyString_FromString
(
"__record_schema__"
))
return
;
...
...
@@ -551,6 +551,9 @@ initRecord()
Revision Log:
$Log: Record.c,v $
Revision 1.4 1998/07/27 13:09:58 jim
Changed _p___reinit__ to _p_deactivate.
Revision 1.3 1998/01/16 21:13:28 jim
Added extra ignored parent object argument to __init__ and
__setstate__.
...
...
lib/python/Shared/DC/Record/Record.c
View file @
5eb73e87
...
...
@@ -10,7 +10,7 @@
static
char
Record_module_documentation
[]
=
""
"
\n
$Id: Record.c,v 1.
3 1998/01/16 21:13:2
8 jim Exp $"
"
\n
$Id: Record.c,v 1.
4 1998/07/27 13:09:5
8 jim Exp $"
;
#ifdef PERSISTENCE
...
...
@@ -141,7 +141,7 @@ Record_deal(Record *self)
#ifdef PERSISTENCE
static
PyObject
*
Record__p_
__reinit__
(
Record
*
self
,
PyObject
*
args
)
Record__p_
deactivate
(
Record
*
self
,
PyObject
*
args
)
{
Record_deal
(
self
);
self
->
schema
=
NULL
;
...
...
@@ -163,8 +163,8 @@ static struct PyMethodDef Record_methods[] = {
"__init__([v]) -- Initialize a record, possibly with state"
},
#ifdef PERSISTENCE
{
"_p_
__reinit__"
,
(
PyCFunction
)
Record__p___reinit__
,
METH_VARARGS
,
"_p_
__reinit__
() -- Reset the record's data"
{
"_p_
deactivate"
,
(
PyCFunction
)
Record__p_deactivate
,
METH_VARARGS
,
"_p_
deactivate
() -- Reset the record's data"
},
#endif
{
NULL
,
NULL
}
/* sentinel */
...
...
@@ -512,7 +512,7 @@ void
initRecord
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
3
$"
;
char
*
rev
=
"$Revision: 1.
4
$"
;
UNLESS
(
py___record_schema__
=
PyString_FromString
(
"__record_schema__"
))
return
;
...
...
@@ -551,6 +551,9 @@ initRecord()
Revision Log:
$Log: Record.c,v $
Revision 1.4 1998/07/27 13:09:58 jim
Changed _p___reinit__ to _p_deactivate.
Revision 1.3 1998/01/16 21:13:28 jim
Added extra ignored parent object argument to __init__ and
__setstate__.
...
...
lib/python/Shared/DC/ZRDB/Record.c
View file @
5eb73e87
...
...
@@ -10,7 +10,7 @@
static
char
Record_module_documentation
[]
=
""
"
\n
$Id: Record.c,v 1.
3 1998/01/16 21:13:2
8 jim Exp $"
"
\n
$Id: Record.c,v 1.
4 1998/07/27 13:09:5
8 jim Exp $"
;
#ifdef PERSISTENCE
...
...
@@ -141,7 +141,7 @@ Record_deal(Record *self)
#ifdef PERSISTENCE
static
PyObject
*
Record__p_
__reinit__
(
Record
*
self
,
PyObject
*
args
)
Record__p_
deactivate
(
Record
*
self
,
PyObject
*
args
)
{
Record_deal
(
self
);
self
->
schema
=
NULL
;
...
...
@@ -163,8 +163,8 @@ static struct PyMethodDef Record_methods[] = {
"__init__([v]) -- Initialize a record, possibly with state"
},
#ifdef PERSISTENCE
{
"_p_
__reinit__"
,
(
PyCFunction
)
Record__p___reinit__
,
METH_VARARGS
,
"_p_
__reinit__
() -- Reset the record's data"
{
"_p_
deactivate"
,
(
PyCFunction
)
Record__p_deactivate
,
METH_VARARGS
,
"_p_
deactivate
() -- Reset the record's data"
},
#endif
{
NULL
,
NULL
}
/* sentinel */
...
...
@@ -512,7 +512,7 @@ void
initRecord
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
3
$"
;
char
*
rev
=
"$Revision: 1.
4
$"
;
UNLESS
(
py___record_schema__
=
PyString_FromString
(
"__record_schema__"
))
return
;
...
...
@@ -551,6 +551,9 @@ initRecord()
Revision Log:
$Log: Record.c,v $
Revision 1.4 1998/07/27 13:09:58 jim
Changed _p___reinit__ to _p_deactivate.
Revision 1.3 1998/01/16 21:13:28 jim
Added extra ignored parent object argument to __init__ and
__setstate__.
...
...
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