[Zodb-checkins] CVS: ZODB3/BTrees - BTreeTemplate.c:1.72 BucketTemplate.c:1.48 SetTemplate.c:1.16 TreeSetTemplate.c:1.15
Guido van Rossum
guido@python.org
Fri, 4 Oct 2002 20:39:57 -0400
Update of /cvs-repository/ZODB3/BTrees
In directory cvs.zope.org:/tmp/cvs-serv28414
Modified Files:
BTreeTemplate.c BucketTemplate.c SetTemplate.c
TreeSetTemplate.c
Log Message:
Merge changes from release branch into trunk.
=== ZODB3/BTrees/BTreeTemplate.c 1.71 => 1.72 ===
--- ZODB3/BTrees/BTreeTemplate.c:1.71 Fri Jun 28 16:52:30 2002
+++ ZODB3/BTrees/BTreeTemplate.c Fri Oct 4 20:39:56 2002
@@ -1618,10 +1618,10 @@
"Return the default (or None) if the key is not found."
},
{"maxKey", (PyCFunction) BTree_maxKey, METH_VARARGS,
- "maxKey([key]) -- Fine the maximum key\n\n"
+ "maxKey([key]) -- Find the maximum key\n\n"
"If an argument is given, find the maximum <= the argument"},
{"minKey", (PyCFunction) BTree_minKey, METH_VARARGS,
- "minKey([key]) -- Fine the minimum key\n\n"
+ "minKey([key]) -- Find the minimum key\n\n"
"If an argument is given, find the minimum >= the argument"},
{"clear", (PyCFunction) BTree_clear, METH_VARARGS,
"clear() -- Remove all of the items from the BTree"},
=== ZODB3/BTrees/BucketTemplate.c 1.47 => 1.48 ===
--- ZODB3/BTrees/BucketTemplate.c:1.47 Thu Jun 27 18:09:32 2002
+++ ZODB3/BTrees/BucketTemplate.c Fri Oct 4 20:39:56 2002
@@ -1305,10 +1305,10 @@
{"__init__", (PyCFunction) Mapping_update, METH_VARARGS,
"__init__(collection) -- Initialize with items from the given collection"},
{"maxKey", (PyCFunction) Bucket_maxKey, METH_VARARGS,
- "maxKey([key]) -- Fine the maximum key\n\n"
+ "maxKey([key]) -- Find the maximum key\n\n"
"If an argument is given, find the maximum <= the argument"},
{"minKey", (PyCFunction) Bucket_minKey, METH_VARARGS,
- "minKey([key]) -- Fine the minimum key\n\n"
+ "minKey([key]) -- Find the minimum key\n\n"
"If an argument is given, find the minimum >= the argument"},
{"values", (PyCFunction) bucket_values, METH_VARARGS,
"values([min, max]) -- Return the values"},
=== ZODB3/BTrees/SetTemplate.c 1.15 => 1.16 ===
--- ZODB3/BTrees/SetTemplate.c:1.15 Thu Feb 21 16:41:17 2002
+++ ZODB3/BTrees/SetTemplate.c Fri Oct 4 20:39:57 2002
@@ -152,10 +152,10 @@
{"clear", (PyCFunction) bucket_clear, METH_VARARGS,
"clear() -- Remove all of the items from the bucket"},
{"maxKey", (PyCFunction) Bucket_maxKey, METH_VARARGS,
- "maxKey([key]) -- Fine the maximum key\n\n"
+ "maxKey([key]) -- Find the maximum key\n\n"
"If an argument is given, find the maximum <= the argument"},
{"minKey", (PyCFunction) Bucket_minKey, METH_VARARGS,
- "minKey([key]) -- Fine the minimum key\n\n"
+ "minKey([key]) -- Find the minimum key\n\n"
"If an argument is given, find the minimum >= the argument"},
#ifdef PERSISTENT
{"_p_resolveConflict", (PyCFunction) bucket__p_resolveConflict, METH_VARARGS,
=== ZODB3/BTrees/TreeSetTemplate.c 1.14 => 1.15 ===
--- ZODB3/BTrees/TreeSetTemplate.c:1.14 Wed Jun 19 19:44:20 2002
+++ ZODB3/BTrees/TreeSetTemplate.c Fri Oct 4 20:39:57 2002
@@ -99,10 +99,10 @@
{"keys", (PyCFunction) BTree_keys, METH_VARARGS,
"keys() -- Return the keys"},
{"maxKey", (PyCFunction) BTree_maxKey, METH_VARARGS,
- "maxKey([key]) -- Fine the maximum key\n\n"
+ "maxKey([key]) -- Find the maximum key\n\n"
"If an argument is given, find the maximum <= the argument"},
{"minKey", (PyCFunction) BTree_minKey, METH_VARARGS,
- "minKey([key]) -- Fine the minimum key\n\n"
+ "minKey([key]) -- Find the minimum key\n\n"
"If an argument is given, find the minimum >= the argument"},
{"clear", (PyCFunction) BTree_clear, METH_VARARGS,
"clear() -- Remove all of the items from the BTree"},