Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(104)

Unified Diff: Objects/codeobject.c

Issue 20103: http://bugs.python.org/issue2459 -- speed up loops SVN Base: http://svn.python.org/view/*checkout*/python/trunk/
Patch Set: Created 9 months, 1 week ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side by-side-diff with in-line comments
Download patch
Index: Objects/codeobject.c
===================================================================
--- Objects/codeobject.c (revision 70087)
+++ Objects/codeobject.c (working copy)
@@ -629,7 +629,7 @@
addr += *p++;
if (*p)
bounds->ap_lower = addr;
- line += *p++;
+ line += (signed char) *p++;
--size;
}

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld r497