summaryrefslogtreecommitdiffstats
path: root/Python/pystrtod.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:16:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:16:30 (GMT)
commit0f8f784a77a51dc3ceac8c812177bff33bced830 (patch)
tree55227dc28b9e1fc5c85650a5604d28c52e32e70f /Python/pystrtod.c
parentd862db0d091a3bb95c185d7365384b8bd22f59be (diff)
downloadcpython-0f8f784a77a51dc3ceac8c812177bff33bced830.zip
cpython-0f8f784a77a51dc3ceac8c812177bff33bced830.tar.gz
cpython-0f8f784a77a51dc3ceac8c812177bff33bced830.tar.bz2
Removed duplicated words in in comments and docs.
Diffstat (limited to 'Python/pystrtod.c')
-rw-r--r--Python/pystrtod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystrtod.c b/Python/pystrtod.c
index 859af43..ae6ab9c 100644
--- a/Python/pystrtod.c
+++ b/Python/pystrtod.c
@@ -324,7 +324,7 @@ PyOS_ascii_atof(const char *nptr)
On overflow (e.g., when trying to convert '1e500' on an IEEE 754 machine),
if overflow_exception is NULL then +-Py_HUGE_VAL is returned, and no Python
- exception is raised. Otherwise, overflow_exception should point to a
+ exception is raised. Otherwise, overflow_exception should point to
a Python exception, this exception will be raised, -1.0 will be returned,
and *endptr will point just past the end of the converted value.