[Python-checkins] cpython: Rewrap comment.

raymond.hettinger python-checkins at python.org
Thu Oct 15 11:05:42 EDT 2015


https://hg.python.org/cpython/rev/9ca59b3cc18b
changeset:   98763:9ca59b3cc18b
user:        Raymond Hettinger <python at rcn.com>
date:        Thu Oct 15 08:05:31 2015 -0700
summary:
  Rewrap comment.

files:
  Modules/_collectionsmodule.c |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c
--- a/Modules/_collectionsmodule.c
+++ b/Modules/_collectionsmodule.c
@@ -272,10 +272,10 @@
 /* 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).

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


More information about the Python-checkins mailing list