From 1344ff8916541d8efce115b17f7924ac4ecda0ac Mon Sep 17 00:00:00 2001 From: Batuhan Taskaya Date: Fri, 2 Jul 2021 17:29:13 +0300 Subject: [PATCH] PEP 657: addr => addrq (#2019) * PEP 657: addr => addrq * add underscores --- pep-0657.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pep-0657.rst b/pep-0657.rst index ac447ecca..9139131e8 100644 --- a/pep-0657.rst +++ b/pep-0657.rst @@ -194,9 +194,9 @@ this PEP: * One new C-API function: :: int PyCode_Addr2Location( - PyCodeObject *co, int addr, - int *startline, int *startcolumn, - int *endline, int *endcolumn) + PyCodeObject *co, int addrq, + int *start_line, int *start_column, + int *end_line, int *end_column) will be added so the end line, the start column offsets and the end column offset can be obtained given the index of a bytecode instruction. This