summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-06-07 22:46:24 (GMT)
committerGitHub <noreply@github.com>2023-06-07 22:46:24 (GMT)
commit3d4a786b9b6382efa0dbe6f28d34b26426bb4165 (patch)
treecf6142e240e3c6a192c4902cea0f563688b7fec6 /Python
parent1e128779befad65ec8208e0ef0d0688ef8a7f5d2 (diff)
downloadcpython-3d4a786b9b6382efa0dbe6f28d34b26426bb4165.zip
cpython-3d4a786b9b6382efa0dbe6f28d34b26426bb4165.tar.gz
cpython-3d4a786b9b6382efa0dbe6f28d34b26426bb4165.tar.bz2
[3.12] gh-105390: Add explicit type cast (GH-105466) (#105472)
Diffstat (limited to 'Python')
-rw-r--r--Python/Python-tokenize.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/Python-tokenize.c b/Python/Python-tokenize.c
index 83a129c..2cf052a 100644
--- a/Python/Python-tokenize.c
+++ b/Python/Python-tokenize.c
@@ -85,7 +85,8 @@ _tokenizer_error(struct tok_state *tok)
break;
case E_EOF:
PyErr_SetString(PyExc_SyntaxError, "unexpected EOF in multi-line statement");
- PyErr_SyntaxLocationObject(tok->filename, tok->lineno, tok->inp - tok->buf < 0 ? 0 : tok->inp - tok->buf);
+ PyErr_SyntaxLocationObject(tok->filename, tok->lineno,
+ tok->inp - tok->buf < 0 ? 0 : (int)(tok->inp - tok->buf));
return -1;
case E_DEDENT:
msg = "unindent does not match any outer indentation level";