[Python-checkins] cpython (merge default -> default): merge heads

benjamin.peterson python-checkins at python.org
Sun Sep 2 20:25:29 CEST 2012


http://hg.python.org/cpython/rev/a2294412d214
changeset:   78837:a2294412d214
parent:      78836:d61424122af5
parent:      78834:db34753bd70e
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Sep 02 14:25:18 2012 -0400
summary:
  merge heads

files:
  Objects/unicodeobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -9146,7 +9146,7 @@
             /* We do not need to compare 0 and len(substring)-1 because
                the if statement above ensured already that they are equal
                when we end up here. */
-            // TODO: honor direction and do a forward or backwards search
+            /* TODO: honor direction and do a forward or backwards search */
             for (i = 1; i < end_sub; ++i) {
                 if (PyUnicode_READ(kind_self, data_self, offset + i) !=
                     PyUnicode_READ(kind_sub, data_sub, i))

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


More information about the Python-checkins mailing list