summaryrefslogtreecommitdiffstats
path: root/Modules/_collectionsmodule.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-10-15 15:05:31 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-10-15 15:05:31 (GMT)
commita4b13d00200053e5985c089af45be34cdbffd1eb (patch)
tree9592de6ee5069be92a94032b3403fe379bb83727 /Modules/_collectionsmodule.c
parentbc00341105afed2255ecd139ca6ca381a482b1f9 (diff)
downloadcpython-a4b13d00200053e5985c089af45be34cdbffd1eb.zip
cpython-a4b13d00200053e5985c089af45be34cdbffd1eb.tar.gz
cpython-a4b13d00200053e5985c089af45be34cdbffd1eb.tar.bz2
Rewrap comment.
Diffstat (limited to 'Modules/_collectionsmodule.c')
-rw-r--r--Modules/_collectionsmodule.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c
index bc225a5..85a0793 100644
--- a/Modules/_collectionsmodule.c
+++ b/Modules/_collectionsmodule.c
@@ -272,10 +272,10 @@ PyDoc_STRVAR(popleft_doc, "Remove and return the leftmost element.");
/* The deque's size limit is d.maxlen. The limit can be zero or positive.
* If there is no limit, then d.maxlen == -1.
*
- * After an item is added to a deque, we check to see if the size has grown past
- * the limit. If it has, we get the size back down to the limit by popping an
- * item off of the opposite end. The methods that can trigger this are append(),
- * appendleft(), extend(), and extendleft().
+ * After an item is added to a deque, we check to see if the size has
+ * grown past the limit. If it has, we get the size back down to the limit
+ * by popping an item off of the opposite end. The methods that can
+ * trigger this are append(), appendleft(), extend(), and extendleft().
*
* The macro to check whether a deque needs to be trimmed uses a single
* unsigned test that returns true whenever 0 <= maxlen < Py_SIZE(deque).