]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-41428: Fix compiler warnings in unionobject.c (GH-22388)
authorVictor Stinner <vstinner@python.org>
Wed, 23 Sep 2020 21:25:54 +0000 (23:25 +0200)
committerGitHub <noreply@github.com>
Wed, 23 Sep 2020 21:25:54 +0000 (23:25 +0200)
commitd67de0a30d76c6a28056bae22fd7d13f2e111b77
treeb23fec55f92f6c27707e3125b06ea9eeb1ad2a2e
parentbbeb223e9a5e9f9374df384efa386b4068a65c0e
bpo-41428: Fix compiler warnings in unionobject.c (GH-22388)

Use Py_ssize_t type rather than int, to store lengths in
unionobject.c. Fix warnings:

Objects\unionobject.c(189,71): warning C4244: '+=':
conversion from 'Py_ssize_t' to 'int', possible loss of data

Objects\unionobject.c(182,1): warning C4244: 'initializing':
conversion from 'Py_ssize_t' to 'int', possible loss of data

Objects\unionobject.c(205,1): warning C4244: 'initializing':
conversion from 'Py_ssize_t' to 'int', possible loss of data

Objects\unionobject.c(437,1): warning C4244: 'initializing':
conversion from 'Py_ssize_t' to 'int', possible loss of data
Objects/unionobject.c