diff options
author | Raymond Hettinger <python@rcn.com> | 2015-10-16 06:25:53 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-10-16 06:25:53 (GMT) |
commit | 1eca237c2f3d5c150cf9184fa7c9d9b137d1187c (patch) | |
tree | e1b9b23e5b0d01d84729d54bf6a4a1e486b7f562 | |
parent | a4b13d00200053e5985c089af45be34cdbffd1eb (diff) | |
download | cpython-1eca237c2f3d5c150cf9184fa7c9d9b137d1187c.zip cpython-1eca237c2f3d5c150cf9184fa7c9d9b137d1187c.tar.gz cpython-1eca237c2f3d5c150cf9184fa7c9d9b137d1187c.tar.bz2 |
Remove old Todo entry that isn't going to happen.
-rw-r--r-- | Modules/_collectionsmodule.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 85a0793..1acbf86 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -156,12 +156,6 @@ freeblock(block *b) } } -/* XXX Todo: - If aligned memory allocations become available, make the - deque object 64 byte aligned so that all of the fields - can be retrieved or updated in a single cache line. -*/ - static PyObject * deque_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { |