PEP 657: addr => addrq (#2019)
* PEP 657: addr => addrq * add underscores
This commit is contained in:
parent
f656342427
commit
1344ff8916
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue