diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-03-14 21:14:53 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-03-14 21:14:53 -0400 |
commit | eba3adb8c547317bb259a27be2dc6b0af2f467af (patch) | |
tree | 2fd1b6de9a90d37d2c473ad5ef9df7fe0cbdb70e /Python/pystrtod.c | |
parent | 645f312bebd576c855073c4ecc06a0673614f227 (diff) | |
parent | 36d507533d39b10591431beb91102e5da812d07b (diff) | |
download | cpython-eba3adb8c547317bb259a27be2dc6b0af2f467af.tar.gz |
Merge long Japanese header fix from 3.2.
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; |