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
Joshua
zodb
Commits
4c4252a8
Commit
4c4252a8
authored
Apr 11, 2003
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finished backporting bugfixes for _bucket_set().
parent
7b55db76
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
src/BTrees/BucketTemplate.c
src/BTrees/BucketTemplate.c
+1
-3
No files found.
src/BTrees/BucketTemplate.c
View file @
4c4252a8
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
****************************************************************************/
****************************************************************************/
#define BUCKETTEMPLATE_C "$Id: BucketTemplate.c,v 1.5
1 2003/04/11 19:17:07
tim_one Exp $\n"
#define BUCKETTEMPLATE_C "$Id: BucketTemplate.c,v 1.5
2 2003/04/11 19:38:18
tim_one Exp $\n"
/* Use BUCKET_SEARCH to find the index at which a key belongs.
/* Use BUCKET_SEARCH to find the index at which a key belongs.
* INDEX An int lvalue to hold the index i such that KEY belongs at
* INDEX An int lvalue to hold the index i such that KEY belongs at
...
@@ -331,8 +331,6 @@ _bucket_set(Bucket *self, PyObject *keyarg, PyObject *v,
...
@@ -331,8 +331,6 @@ _bucket_set(Bucket *self, PyObject *keyarg, PyObject *v,
}
}
/* The key exists at index i, and we need to replace the value. */
/* The key exists at index i, and we need to replace the value. */
COPY_VALUE_FROM_ARG
(
value
,
v
,
copied
);
UNLESS
(
copied
)
goto
Done
;
#ifdef VALUE_SAME
#ifdef VALUE_SAME
/* short-circuit if no change */
/* short-circuit if no change */
if
(
VALUE_SAME
(
self
->
values
[
i
],
value
))
{
if
(
VALUE_SAME
(
self
->
values
[
i
],
value
))
{
...
...
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