[Python-checkins] r80746 - python/trunk/Objects/unicodeobject.c (original) (raw)

brett.cannon python-checkins at python.org
Tue May 4 03:16:51 CEST 2010


Author: brett.cannon Date: Tue May 4 03:16:51 2010 New Revision: 80746

Log: Remove an unneeded variable and assignment.

Found using Clang's static analyzer.

Modified: python/trunk/Objects/unicodeobject.c

Modified: python/trunk/Objects/unicodeobject.c

--- python/trunk/Objects/unicodeobject.c (original) +++ python/trunk/Objects/unicodeobject.c Tue May 4 03:16:51 2010 @@ -4346,7 +4346,7 @@ if (!result) return NULL; for (i = 0; i < 256; i++) {

@@ -5846,7 +5846,7 @@ } } else {

@@ -5878,7 +5878,6 @@ return NULL; i = 0; p = u->str;



More information about the Python-checkins mailing list