From: Stefan Behnel Date: Sun, 1 Sep 2013 20:33:59 +0000 (+0200) Subject: minor code cleanup X-Git-Tag: 0.20b1~338 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=50aebbbccb23f940db39cc38fc51406c43e0a269;p=platform%2Fupstream%2Fpython-cython.git minor code cleanup --- diff --git a/Cython/Compiler/Annotate.py b/Cython/Compiler/Annotate.py index bb795cd..525ca67 100644 --- a/Cython/Compiler/Annotate.py +++ b/Cython/Compiler/Annotate.py @@ -76,8 +76,7 @@ class AnnotationCCodeWriter(CCodeWriter): else: all.append((pos, start+end)) - all.sort() - all.reverse() + all.sort(reverse=True) for pos, item in all: _, line_no, col = pos line_no -= 1