summaryrefslogtreecommitdiff
path: root/Include/setobject.h
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2005-08-01 21:39:29 +0000
committerRaymond Hettinger <python@rcn.com>2005-08-01 21:39:29 +0000
commitd794666048510deca0d4987a4c74d0fca85be411 (patch)
tree0d734e3a3e02c57255d24a8458d53fc02da9d677 /Include/setobject.h
parente295676c87d0a27ca4798a1d817ede88cc860586 (diff)
downloadcpython-git-d794666048510deca0d4987a4c74d0fca85be411.tar.gz
* Improve code for the empty frozenset singleton:
- Handle both frozenset() and frozenset([]). - Do not use singleton for frozenset subclasses. - Finalize the singleton. - Add test cases. * Factor-out set_update_internal() from set_update(). Simplifies the code for several internal callers. * Factor constant expressions out of loop in set_merge_internal(). * Minor comment touch-ups.
Diffstat (limited to 'Include/setobject.h')
-rw-r--r--Include/setobject.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/setobject.h b/Include/setobject.h
index 8569ed1e79..aa4bb9fbee 100644
--- a/Include/setobject.h
+++ b/Include/setobject.h
@@ -42,8 +42,7 @@ struct _setobject {
/* table points to smalltable for small tables, else to
* additional malloc'ed memory. table is never NULL! This rule
- * saves repeated runtime null-tests in the workhorse getitem and
- * setitem calls.
+ * saves repeated runtime null-tests.
*/
setentry *table;
setentry *(*lookup)(PySetObject *so, PyObject *key, long hash);