summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-07-09 22:12:52 +0000
committerMark Dickinson <dickinsm@gmail.com>2010-07-09 22:12:52 +0000
commit37cffe6d96093e7fb6ae21f39a9cf6e508567ea3 (patch)
treea172b90faf86a7429a11f0426cd74ca43b247418 /Python
parent0d4bf030ba35875eac3ced6ecf9089fc53d81a57 (diff)
downloadcpython-37cffe6d96093e7fb6ae21f39a9cf6e508567ea3.tar.gz
Revert temporary debugging commits (r82752, r82754).
Diffstat (limited to 'Python')
-rw-r--r--Python/pystrtod.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/Python/pystrtod.c b/Python/pystrtod.c
index 0dea0a6e95..f7ddd13d99 100644
--- a/Python/pystrtod.c
+++ b/Python/pystrtod.c
@@ -1001,17 +1001,9 @@ format_float_short(double d, char format_code,
else {
/* shouldn't get here: Gay's code should always return
something starting with a digit, an 'I', or 'N' */
- printf("Unexpected failure in format_float_short. "
- "Arguments: d = %.17g, format_code = %d, "
- "mode = %d, precision = %ld\n",
- d, format_code, mode, precision);
- printf("digits == %.100s\n", digits);
- PyErr_Format(PyExc_RuntimeError,
- "Unexpected failure in format_float_short. "
- "Arguments: d = %.17g, format_code = %d, "
- "mode = %d, precision = %ld\n",
- d, format_code, mode, precision);
- return NULL;
+ strncpy(p, "ERR", 3);
+ p += 3;
+ assert(0);
}
goto exit;
}