diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-11-02 04:20:33 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-11-02 04:20:33 (GMT) |
commit | d2ad5718ad955a13cf570bacad1d7800d995da33 (patch) | |
tree | 8701db861a6620fbb4cd000fd1932e5a0f8f6ffe /Modules | |
parent | 2eb819f7a82c7eb61f2d253894d9973f0ec21df2 (diff) | |
download | cpython-d2ad5718ad955a13cf570bacad1d7800d995da33.zip cpython-d2ad5718ad955a13cf570bacad1d7800d995da33.tar.gz cpython-d2ad5718ad955a13cf570bacad1d7800d995da33.tar.bz2 |
Issue #25523: Further a-to-an corrections new in 3.5
Diffstat (limited to 'Modules')
-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 66f5939..214872b 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -629,7 +629,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. |