mirror of
https://github.com/python/cpython.git
synced 2025-09-08 18:01:44 +00:00
replace Py_(u)intptr_t with the c99 standard types
This commit is contained in:
parent
3c397e4c39
commit
ca47063998
21 changed files with 86 additions and 86 deletions
|
@ -255,7 +255,7 @@ parsetok(struct tok_state *tok, grammar *g, int start, perrdetail *err_ret,
|
|||
#endif
|
||||
if (a >= tok->line_start)
|
||||
col_offset = Py_SAFE_DOWNCAST(a - tok->line_start,
|
||||
Py_intptr_t, int);
|
||||
intptr_t, int);
|
||||
else
|
||||
col_offset = -1;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue