summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-05-03 06:51:59 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-05-03 06:51:59 (GMT)
commit930427b89287ab0ef2ea07b0de069a08bd00e0f7 (patch)
tree7186e2e823745726eb1cfe1359f16c5c9aa0a6fb /Objects
parent7c2bb5bc5765491a80bdca43545c5f41481cbf08 (diff)
downloadcpython-930427b89287ab0ef2ea07b0de069a08bd00e0f7.zip
cpython-930427b89287ab0ef2ea07b0de069a08bd00e0f7.tar.gz
cpython-930427b89287ab0ef2ea07b0de069a08bd00e0f7.tar.bz2
Add a reference to dictnotes.txt. It does no good if you don't know it's
there or where to find it.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/dictobject.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 6c86235..f0e93f8 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1,6 +1,12 @@
/* Dictionary object implementation using a hash table */
+/* The distribution includes a separate file, Objects/dictnotes.txt,
+ describing explorations into dictionary design and optimization.
+ It covers typical dictionary use patterns, the parameters for
+ tuning dictionaries, and several ideas for possible optimizations.
+*/
+
#include "Python.h"
typedef PyDictEntry dictentry;