diff options
author | Eric Smith <eric@trueblade.com> | 2009-10-26 17:46:17 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2009-10-26 17:46:17 (GMT) |
commit | c1bdf891458d2f37aa90b27f3ea85379cbb0d967 (patch) | |
tree | 68f44ec3ad2d9d31071dc0136696ae0b96254851 /Include/pystrtod.h | |
parent | 975d7576caa8858b2692b8cba77094ca8fdb685e (diff) | |
download | cpython-c1bdf891458d2f37aa90b27f3ea85379cbb0d967.zip cpython-c1bdf891458d2f37aa90b27f3ea85379cbb0d967.tar.gz cpython-c1bdf891458d2f37aa90b27f3ea85379cbb0d967.tar.bz2 |
Finished removing _PyOS_double_to_string, as mentioned in issue 7117.
Diffstat (limited to 'Include/pystrtod.h')
-rw-r--r-- | Include/pystrtod.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Include/pystrtod.h b/Include/pystrtod.h index 106448b..97578d8 100644 --- a/Include/pystrtod.h +++ b/Include/pystrtod.h @@ -13,13 +13,6 @@ 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); -/* Use PyOS_double_to_string instead. It's the same, except it allocates - the appropriately sized buffer and returns it. This function will go - away in Python 2.8 and 3.2. */ -PyAPI_FUNC(void) _PyOS_double_to_string(char *buf, size_t buf_len, double val, - char format_code, int precision, - int flags, int* type); - /* The caller is responsible for calling PyMem_Free to free the buffer that's is returned. */ PyAPI_FUNC(char *) PyOS_double_to_string(double val, |