PEP 657: addr => addrq (#2019)

* PEP 657: addr => addrq

* add underscores
This commit is contained in:
Batuhan Taskaya 2021-07-02 17:29:13 +03:00 committed by GitHub
parent f656342427
commit 1344ff8916
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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