[Python-checkins] python/dist/src/Objects dictobject.c,2.143,2.144

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Fri, 02 May 2003 23:52:01 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory sc8-pr-cvs1:/tmp/cvs-serv31206/Objects

Modified Files:
	dictobject.c 
Log Message:
Add a reference to dictnotes.txt.  It does no good if you don't know it's
there or where to find it.



Index: dictobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/dictobject.c,v
retrieving revision 2.143
retrieving revision 2.144
diff -C2 -d -r2.143 -r2.144
*** dictobject.c	17 Mar 2003 19:46:09 -0000	2.143
--- dictobject.c	3 May 2003 06:51:59 -0000	2.144
***************
*** 2,5 ****
--- 2,11 ----
  /* 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"