diff options
author | Raymond Hettinger <python@rcn.com> | 2015-11-02 05:04:46 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-11-02 05:04:46 (GMT) |
commit | 0bdf9ea136c4acca2de0fe6ab799ab35d5b09fd2 (patch) | |
tree | 4b47f7e8db6a919ad9e1dd8da0f21144754e7ffa /Modules/_collectionsmodule.c | |
parent | 67b97b8f8dc792aa7e1130a52a0ccc5069c400ed (diff) | |
parent | e56a9191000d2ff15d7550b9c852fa6dee9b8f50 (diff) | |
download | cpython-0bdf9ea136c4acca2de0fe6ab799ab35d5b09fd2.zip cpython-0bdf9ea136c4acca2de0fe6ab799ab35d5b09fd2.tar.gz cpython-0bdf9ea136c4acca2de0fe6ab799ab35d5b09fd2.tar.bz2 |
merge
Diffstat (limited to 'Modules/_collectionsmodule.c')
-rw-r--r-- | Modules/_collectionsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index c12d43e..c9e4568 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -742,7 +742,7 @@ volume rotations should take care not to penalize the common case. Conceptually, a rotate by one is equivalent to a pop on one side and an append on the other. However, a pop/append pair is unnecessarily slow -because it requires a incref/decref pair for an object located randomly +because it requires an incref/decref pair for an object located randomly in memory. It is better to just move the object pointer from one block to the next without changing the reference count. |