]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-40941: Fix stackdepth compiler warnings (GH-22377)
authorVictor Stinner <vstinner@python.org>
Wed, 23 Sep 2020 12:07:16 +0000 (14:07 +0200)
committerGitHub <noreply@github.com>
Wed, 23 Sep 2020 12:07:16 +0000 (14:07 +0200)
commitb7d8d8dbfe83040087a63662e0b908f4b5ac24b0
treefb7af60eab6f060ae4451b9d7c9d5a7c20e2553f
parent71f2ff4ccf4ff8bdb56cc30d115ca2ddc602b12f
bpo-40941: Fix stackdepth compiler warnings (GH-22377)

Explicitly cast a difference of two pointers to int:
PyFrameObject.f_stackdepth is an int.
Python/ceval.c