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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
3727d8a1
Commit
3727d8a1
authored
Jan 24, 2002
by
matt@zope.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correction from Steve Alexander where return(Py_None) does not incref
Py_None.
parent
95e33cb9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
trunk/src/BTrees/SetOpTemplate.c
trunk/src/BTrees/SetOpTemplate.c
+2
-2
No files found.
trunk/src/BTrees/SetOpTemplate.c
View file @
3727d8a1
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
Set operations
Set operations
****************************************************************************/
****************************************************************************/
#define SETOPTEMPLATE_C "$Id: SetOpTemplate.c,v 1.
8 2001/11/28 15:50:54
matt Exp $\n"
#define SETOPTEMPLATE_C "$Id: SetOpTemplate.c,v 1.
9 2002/01/24 20:18:29
matt Exp $\n"
#ifdef INTSET_H
#ifdef INTSET_H
static
int
static
int
...
@@ -307,7 +307,7 @@ difference_m(PyObject *ignored, PyObject *args)
...
@@ -307,7 +307,7 @@ difference_m(PyObject *ignored, PyObject *args)
if
(
o1
==
Py_None
||
o2
==
Py_None
)
if
(
o1
==
Py_None
||
o2
==
Py_None
)
{
{
Py_INCREF
(
o1
);
Py_INCREF
(
Py_None
);
return
Py_None
;
return
Py_None
;
}
}
...
...
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