mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +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
|
@ -529,7 +529,7 @@ entrance:
|
|||
if (ctx->pattern[0] == SRE_OP_INFO) {
|
||||
/* optimization info block */
|
||||
/* <INFO> <1=skip> <2=flags> <3=min> ... */
|
||||
if (ctx->pattern[3] && (Py_uintptr_t)(end - ctx->ptr) < ctx->pattern[3]) {
|
||||
if (ctx->pattern[3] && (uintptr_t)(end - ctx->ptr) < ctx->pattern[3]) {
|
||||
TRACE(("reject (got %" PY_FORMAT_SIZE_T "d chars, "
|
||||
"need %" PY_FORMAT_SIZE_T "d)\n",
|
||||
end - ctx->ptr, (Py_ssize_t) ctx->pattern[3]));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue