| Index: Lib/dis.py |
| =================================================================== |
| --- Lib/dis.py (revision 70087) |
| +++ Lib/dis.py (working copy) |
| @@ -182,7 +182,8 @@ |
| """ |
| byte_increments = [ord(c) for c in code.co_lnotab[0::2]] |
| - line_increments = [ord(c) for c in code.co_lnotab[1::2]] |
| + line_increments = [c if c < 128 else c - 256 |
| + for c in map(ord, code.co_lnotab[1::2])] |
| lastlineno = None |
| lineno = code.co_firstlineno |