[Python-checkins] cpython: Reference the original compact-and-ordered proposal

raymond.hettinger python-checkins at python.org
Sat Oct 22 12:58:20 EDT 2016


https://hg.python.org/cpython/rev/3e073e7b4460
changeset:   104647:3e073e7b4460
user:        Raymond Hettinger <python at rcn.com>
date:        Sat Oct 22 09:58:14 2016 -0700
summary:
  Reference the original compact-and-ordered proposal

files:
  Objects/dictobject.c |  5 +++--
  1 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/Objects/dictobject.c b/Objects/dictobject.c
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -10,8 +10,9 @@
 
 This implements the dictionary's hashtable.
 
-As of Python 3.6, this is compact and ordered. Basic idea is described here.
-https://morepypy.blogspot.com/2015/01/faster-more-memory-efficient-and-more.html
+As of Python 3.6, this is compact and ordered. Basic idea is described here:
+* https://mail.python.org/pipermail/python-dev/2012-December/123028.html
+* https://morepypy.blogspot.com/2015/01/faster-more-memory-efficient-and-more.html
 
 layout:
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list