Feature or enhancement
co_lnotab was deprecated in the docs in 3.10, deprecation warning was added in 3.12 and now it is time to remove it.
| staticPyObject* |
| code_getlnotab(PyObject*self, void*closure) |
| { |
| PyCodeObject*code=_PyCodeObject_CAST(self); |
| if (PyErr_WarnEx(PyExc_DeprecationWarning, |
| "co_lnotab is deprecated, use co_lines instead.", |
| 1) <0) { |
| returnNULL; |
| } |
| returndecode_linetable(code); |
| } |
Refs #101865
Linked PRs
Feature or enhancement
co_lnotabwas deprecated in the docs in 3.10, deprecation warning was added in 3.12 and now it is time to remove it.cpython/Objects/codeobject.c
Lines 2620 to 2630 in cf8941c
Refs #101865
Linked PRs
codetype.co_lnotab#134691