summaryrefslogtreecommitdiffstats
path: root/Include/pystrtod.h
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2010-02-22 14:58:30 (GMT)
committerEric Smith <eric@trueblade.com>2010-02-22 14:58:30 (GMT)
commit68af50ba392daee56ac555a1b292197b62a0e52c (patch)
tree9a74b1ee227ae4a872c05aac7135164f7df2efa9 /Include/pystrtod.h
parent9d2d327963fac62294c20fb4611071a30a609293 (diff)
downloadcpython-68af50ba392daee56ac555a1b292197b62a0e52c.zip
cpython-68af50ba392daee56ac555a1b292197b62a0e52c.tar.gz
cpython-68af50ba392daee56ac555a1b292197b62a0e52c.tar.bz2
Issue #5988: Delete deprecated functions PyOS_ascii_formatd, PyOS_ascii_strtod, and PyOS_ascii_atof.
Diffstat (limited to 'Include/pystrtod.h')
-rw-r--r--Include/pystrtod.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/pystrtod.h b/Include/pystrtod.h
index b1d8786..d7bae12 100644
--- a/Include/pystrtod.h
+++ b/Include/pystrtod.h
@@ -6,9 +6,6 @@ extern "C" {
#endif
-PyAPI_FUNC(double) PyOS_ascii_strtod(const char *str, char **ptr);
-PyAPI_FUNC(double) PyOS_ascii_atof(const char *str);
-PyAPI_FUNC(char *) PyOS_ascii_formatd(char *buffer, size_t buf_len, const char *format, double d);
PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
char **endptr,
PyObject *overflow_exception);