mirror of
https://github.com/python/cpython.git
synced 2026-01-28 05:35:31 +00:00
Inlining of code that corresponds to source code lines, can make it hard to distinguish later between code which is only reachable from except handlers, and that which is reachable in normal control flow. This caused problems with the debugger's jump feature. This PR turns off the inlining optimisation for code which has line numbers. We still inline things like the implicit "return None".
Miscellaneous source files for the main Python shared library