]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
[3.14] Fix compiler warnings in remote debugging (#141060) (#141067)
authorVictor Stinner <vstinner@python.org>
Wed, 5 Nov 2025 19:49:39 +0000 (20:49 +0100)
committerGitHub <noreply@github.com>
Wed, 5 Nov 2025 19:49:39 +0000 (19:49 +0000)
commit36e9f672f29819861fb3dd150700137cf185adac
treee9442a8b2251a72d95979e4e8c70f7fe2c3763d8
parent8675f55f6a9644393100eac0bfe18863518a04be
[3.14] Fix compiler warnings in remote debugging (#141060) (#141067)

Fix compiler warnings in remote debugging (#141060)

Example of fixed warnings on 32-bit Windows:

    Python\remote_debugging.c(24,53): warning C4244: 'function':
    conversion from 'uint64_t' to 'uintptr_t', possible loss of data

    Modules\_remote_debugging_module.c(789,44): warning C4244:
    'function': conversion from 'uint64_t' to 'size_t', possible loss
    of data

(cherry picked from commit f458ac01ba522cc7f94c0c0ee9a00c82f1be6d69)
Modules/_remote_debugging_module.c
Python/remote_debugging.c