diff options
author | Jesus Cea <jcea@jcea.es> | 2011-09-19 17:11:26 +0200 |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2011-09-19 17:11:26 +0200 |
commit | 5709b0a9933ce87f78389617abfd934fd113ba5f (patch) | |
tree | ad751c5cbc2f43440c1faf775e102decfa0f9dcb /Python/pystrtod.c | |
parent | 66c4188b352a7c021c7b83f70d1a1e54bbed45df (diff) | |
parent | 016d82354232e8a1924135ff10fac70cf5c720b9 (diff) | |
download | cpython-5709b0a9933ce87f78389617abfd934fd113ba5f.tar.gz |
Close #13007: whichdb should recognize gdbm 1.9 magic numbers
Diffstat (limited to 'Python/pystrtod.c')
-rw-r--r-- | Python/pystrtod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystrtod.c b/Python/pystrtod.c index 75e3032fb7..7bf21c0bc1 100644 --- a/Python/pystrtod.c +++ b/Python/pystrtod.c @@ -954,7 +954,7 @@ format_float_short(double d, char format_code, /* shouldn't get here: Gay's code should always return something starting with a digit, an 'I', or 'N' */ strncpy(p, "ERR", 3); - p += 3; + /* p += 3; */ assert(0); } goto exit; |