Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
Nicolas Wavrant
ZODB
Commits
be4c5433
Commit
be4c5433
authored
Dec 11, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set EXTENSIONCLASS_BASICNEW_FLAG to support __basicnew__ protocol.
parent
0c3e7c77
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
12 deletions
+24
-12
trunk/src/Persistence/cPersistence.c
trunk/src/Persistence/cPersistence.c
+8
-4
trunk/src/ZODB/cPersistence.c
trunk/src/ZODB/cPersistence.c
+8
-4
trunk/src/persistent/cPersistence.c
trunk/src/persistent/cPersistence.c
+8
-4
No files found.
trunk/src/Persistence/cPersistence.c
View file @
be4c5433
/***********************************************************************
/***********************************************************************
$Id: cPersistence.c,v 1.2
0 1997/11/13 19:46:24
jim Exp $
$Id: cPersistence.c,v 1.2
1 1997/12/11 16:03:30
jim Exp $
C Persistence Module
C Persistence Module
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
*****************************************************************************/
*****************************************************************************/
static
char
*
what_string
=
"$Id: cPersistence.c,v 1.2
0 1997/11/13 19:46:24
jim Exp $"
;
static
char
*
what_string
=
"$Id: cPersistence.c,v 1.2
1 1997/12/11 16:03:30
jim Exp $"
;
#include <time.h>
#include <time.h>
#include "cPersistence.h"
#include "cPersistence.h"
...
@@ -848,7 +848,8 @@ static PyExtensionClass Pertype = {
...
@@ -848,7 +848,8 @@ static PyExtensionClass Pertype = {
/* Space for future expansion */
/* Space for future expansion */
0L
,
0L
,
0L
,
0L
,
Pertype__doc__
,
/* Documentation string */
Pertype__doc__
,
/* Documentation string */
METHOD_CHAIN
(
Per_methods
)
METHOD_CHAIN
(
Per_methods
),
EXTENSIONCLASS_BASICNEW_FLAG
,
};
};
/* End of code for Persistent objects */
/* End of code for Persistent objects */
...
@@ -900,7 +901,7 @@ void
...
@@ -900,7 +901,7 @@ void
initcPersistence
()
initcPersistence
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.2
0
$"
;
char
*
rev
=
"$Revision: 1.2
1
$"
;
PATimeType
.
ob_type
=&
PyType_Type
;
PATimeType
.
ob_type
=&
PyType_Type
;
...
@@ -927,6 +928,9 @@ initcPersistence()
...
@@ -927,6 +928,9 @@ initcPersistence()
/****************************************************************************
/****************************************************************************
$Log: cPersistence.c,v $
$Log: cPersistence.c,v $
Revision 1.21 1997/12/11 16:03:30 jim
Set EXTENSIONCLASS_BASICNEW_FLAG to support __basicnew__ protocol.
Revision 1.20 1997/11/13 19:46:24 jim
Revision 1.20 1997/11/13 19:46:24 jim
Fixed minor error handling bug in reinit.
Fixed minor error handling bug in reinit.
...
...
trunk/src/ZODB/cPersistence.c
View file @
be4c5433
/***********************************************************************
/***********************************************************************
$Id: cPersistence.c,v 1.2
0 1997/11/13 19:46:24
jim Exp $
$Id: cPersistence.c,v 1.2
1 1997/12/11 16:03:30
jim Exp $
C Persistence Module
C Persistence Module
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
*****************************************************************************/
*****************************************************************************/
static
char
*
what_string
=
"$Id: cPersistence.c,v 1.2
0 1997/11/13 19:46:24
jim Exp $"
;
static
char
*
what_string
=
"$Id: cPersistence.c,v 1.2
1 1997/12/11 16:03:30
jim Exp $"
;
#include <time.h>
#include <time.h>
#include "cPersistence.h"
#include "cPersistence.h"
...
@@ -848,7 +848,8 @@ static PyExtensionClass Pertype = {
...
@@ -848,7 +848,8 @@ static PyExtensionClass Pertype = {
/* Space for future expansion */
/* Space for future expansion */
0L
,
0L
,
0L
,
0L
,
Pertype__doc__
,
/* Documentation string */
Pertype__doc__
,
/* Documentation string */
METHOD_CHAIN
(
Per_methods
)
METHOD_CHAIN
(
Per_methods
),
EXTENSIONCLASS_BASICNEW_FLAG
,
};
};
/* End of code for Persistent objects */
/* End of code for Persistent objects */
...
@@ -900,7 +901,7 @@ void
...
@@ -900,7 +901,7 @@ void
initcPersistence
()
initcPersistence
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.2
0
$"
;
char
*
rev
=
"$Revision: 1.2
1
$"
;
PATimeType
.
ob_type
=&
PyType_Type
;
PATimeType
.
ob_type
=&
PyType_Type
;
...
@@ -927,6 +928,9 @@ initcPersistence()
...
@@ -927,6 +928,9 @@ initcPersistence()
/****************************************************************************
/****************************************************************************
$Log: cPersistence.c,v $
$Log: cPersistence.c,v $
Revision 1.21 1997/12/11 16:03:30 jim
Set EXTENSIONCLASS_BASICNEW_FLAG to support __basicnew__ protocol.
Revision 1.20 1997/11/13 19:46:24 jim
Revision 1.20 1997/11/13 19:46:24 jim
Fixed minor error handling bug in reinit.
Fixed minor error handling bug in reinit.
...
...
trunk/src/persistent/cPersistence.c
View file @
be4c5433
/***********************************************************************
/***********************************************************************
$Id: cPersistence.c,v 1.2
0 1997/11/13 19:46:24
jim Exp $
$Id: cPersistence.c,v 1.2
1 1997/12/11 16:03:30
jim Exp $
C Persistence Module
C Persistence Module
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
*****************************************************************************/
*****************************************************************************/
static
char
*
what_string
=
"$Id: cPersistence.c,v 1.2
0 1997/11/13 19:46:24
jim Exp $"
;
static
char
*
what_string
=
"$Id: cPersistence.c,v 1.2
1 1997/12/11 16:03:30
jim Exp $"
;
#include <time.h>
#include <time.h>
#include "cPersistence.h"
#include "cPersistence.h"
...
@@ -848,7 +848,8 @@ static PyExtensionClass Pertype = {
...
@@ -848,7 +848,8 @@ static PyExtensionClass Pertype = {
/* Space for future expansion */
/* Space for future expansion */
0L
,
0L
,
0L
,
0L
,
Pertype__doc__
,
/* Documentation string */
Pertype__doc__
,
/* Documentation string */
METHOD_CHAIN
(
Per_methods
)
METHOD_CHAIN
(
Per_methods
),
EXTENSIONCLASS_BASICNEW_FLAG
,
};
};
/* End of code for Persistent objects */
/* End of code for Persistent objects */
...
@@ -900,7 +901,7 @@ void
...
@@ -900,7 +901,7 @@ void
initcPersistence
()
initcPersistence
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.2
0
$"
;
char
*
rev
=
"$Revision: 1.2
1
$"
;
PATimeType
.
ob_type
=&
PyType_Type
;
PATimeType
.
ob_type
=&
PyType_Type
;
...
@@ -927,6 +928,9 @@ initcPersistence()
...
@@ -927,6 +928,9 @@ initcPersistence()
/****************************************************************************
/****************************************************************************
$Log: cPersistence.c,v $
$Log: cPersistence.c,v $
Revision 1.21 1997/12/11 16:03:30 jim
Set EXTENSIONCLASS_BASICNEW_FLAG to support __basicnew__ protocol.
Revision 1.20 1997/11/13 19:46:24 jim
Revision 1.20 1997/11/13 19:46:24 jim
Fixed minor error handling bug in reinit.
Fixed minor error handling bug in reinit.
...
...
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