Files
cpython/Lib
Victor Stinner f3914eb16d co_lnotab supports negative line number delta
Issue #26107: The format of the co_lnotab attribute of code objects changes to
support negative line number delta.

Changes:

* assemble_lnotab(): if line number delta is less than -128 or greater than
  127, emit multiple (offset_delta, lineno_delta) in co_lnotab
* update functions decoding co_lnotab to use signed 8-bit integers

  - dis.findlinestarts()
  - PyCode_Addr2Line()
  - _PyCode_CheckLineNumber()
  - frame_setlineno()

* update lnotab_notes.txt
* increase importlib MAGIC_NUMBER to 3361
* document the change in What's New in Python 3.6
* cleanup also PyCode_Optimize() to use better variable names
2016-01-20 12:16:21 +01:00
..
2015-11-23 21:04:53 -08:00
2016-01-16 23:44:16 -05:00
2015-10-06 18:52:52 +03:00
2015-10-28 23:15:22 -07:00
2015-09-22 17:35:42 -07:00
2015-10-01 11:27:57 +01:00
2015-10-24 20:07:08 -07:00
2015-09-29 10:30:47 -04:00
2015-10-06 18:52:52 +03:00