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
13b1a917
Commit
13b1a917
authored
May 14, 1999
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
For got to take address of standard Type. Ugh.
parent
51449b3f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
src/Persistence/cPickleCache.c
src/Persistence/cPickleCache.c
+3
-3
src/ZODB/cPickleCache.c
src/ZODB/cPickleCache.c
+3
-3
src/persistent/cPickleCache.c
src/persistent/cPickleCache.c
+3
-3
No files found.
src/Persistence/cPickleCache.c
View file @
13b1a917
...
...
@@ -82,7 +82,7 @@
attributions are listed in the accompanying credits file.
****************************************************************************/
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.2
0 1999/05/14 19:22:3
8 jim Exp $"
;
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.2
1 1999/05/14 19:41:2
8 jim Exp $"
;
#define ASSIGN(V,E) {PyObject *__e; __e=(E); Py_XDECREF(V); (V)=__e;}
#define UNLESS(E) if(!(E))
...
...
@@ -361,7 +361,7 @@ cc_invalidate(ccobject *self, PyObject *args)
PyObject
*
inv
,
*
key
,
*
v
;
int
i
,
l
;
if
(
PyArg_ParseTuple
(
args
,
"O!"
,
PyDict_Type
,
&
inv
))
{
if
(
PyArg_ParseTuple
(
args
,
"O!"
,
&
PyDict_Type
,
&
inv
))
{
for
(
i
=
0
;
PyDict_Next
(
inv
,
&
i
,
&
key
,
&
v
);
)
if
(
key
==
Py_None
)
{
/* Eek some nitwit invalidated everything! */
...
...
@@ -623,7 +623,7 @@ void
initcPickleCache
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.2
0
$"
;
char
*
rev
=
"$Revision: 1.2
1
$"
;
Cctype
.
ob_type
=&
PyType_Type
;
...
...
src/ZODB/cPickleCache.c
View file @
13b1a917
...
...
@@ -82,7 +82,7 @@
attributions are listed in the accompanying credits file.
****************************************************************************/
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.2
0 1999/05/14 19:22:3
8 jim Exp $"
;
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.2
1 1999/05/14 19:41:2
8 jim Exp $"
;
#define ASSIGN(V,E) {PyObject *__e; __e=(E); Py_XDECREF(V); (V)=__e;}
#define UNLESS(E) if(!(E))
...
...
@@ -361,7 +361,7 @@ cc_invalidate(ccobject *self, PyObject *args)
PyObject
*
inv
,
*
key
,
*
v
;
int
i
,
l
;
if
(
PyArg_ParseTuple
(
args
,
"O!"
,
PyDict_Type
,
&
inv
))
{
if
(
PyArg_ParseTuple
(
args
,
"O!"
,
&
PyDict_Type
,
&
inv
))
{
for
(
i
=
0
;
PyDict_Next
(
inv
,
&
i
,
&
key
,
&
v
);
)
if
(
key
==
Py_None
)
{
/* Eek some nitwit invalidated everything! */
...
...
@@ -623,7 +623,7 @@ void
initcPickleCache
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.2
0
$"
;
char
*
rev
=
"$Revision: 1.2
1
$"
;
Cctype
.
ob_type
=&
PyType_Type
;
...
...
src/persistent/cPickleCache.c
View file @
13b1a917
...
...
@@ -82,7 +82,7 @@
attributions are listed in the accompanying credits file.
****************************************************************************/
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.2
0 1999/05/14 19:22:3
8 jim Exp $"
;
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.2
1 1999/05/14 19:41:2
8 jim Exp $"
;
#define ASSIGN(V,E) {PyObject *__e; __e=(E); Py_XDECREF(V); (V)=__e;}
#define UNLESS(E) if(!(E))
...
...
@@ -361,7 +361,7 @@ cc_invalidate(ccobject *self, PyObject *args)
PyObject
*
inv
,
*
key
,
*
v
;
int
i
,
l
;
if
(
PyArg_ParseTuple
(
args
,
"O!"
,
PyDict_Type
,
&
inv
))
{
if
(
PyArg_ParseTuple
(
args
,
"O!"
,
&
PyDict_Type
,
&
inv
))
{
for
(
i
=
0
;
PyDict_Next
(
inv
,
&
i
,
&
key
,
&
v
);
)
if
(
key
==
Py_None
)
{
/* Eek some nitwit invalidated everything! */
...
...
@@ -623,7 +623,7 @@ void
initcPickleCache
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.2
0
$"
;
char
*
rev
=
"$Revision: 1.2
1
$"
;
Cctype
.
ob_type
=&
PyType_Type
;
...
...
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