]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Drop confusing commented out code in pystrtod.c (GH-6072) (GH-9588)
authorVictor Stinner <vstinner@redhat.com>
Wed, 26 Sep 2018 15:18:23 +0000 (08:18 -0700)
committerGitHub <noreply@github.com>
Wed, 26 Sep 2018 15:18:23 +0000 (08:18 -0700)
commit911231e70843fb255fc395473e668361532e00a6
tree0729f5a1613025c3d25f344e27bfa7fba96b5102
parent65fa1264a308a94e24afa76f41a68708a346738f
Drop confusing commented out code in pystrtod.c (GH-6072) (GH-9588)

Fix the following warning:

Python/pystrtod.c: In function 'format_float_short':
Python/pystrtod.c:1007:13: warning: 'strncpy' output truncated before terminating nul copying 3 bytes from a string of the same length [-Wstringop-truncation]
             strncpy(p, "ERR", 3);

(cherry picked from commit 9fb84157595a385f15799e5d0729c1e1b0ba9d38)
Python/pystrtod.c