diff options
author | Eric Smith <eric@trueblade.com> | 2010-02-22 14:58:30 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2010-02-22 14:58:30 (GMT) |
commit | 68af50ba392daee56ac555a1b292197b62a0e52c (patch) | |
tree | 9a74b1ee227ae4a872c05aac7135164f7df2efa9 /Doc/c-api/conversion.rst | |
parent | 9d2d327963fac62294c20fb4611071a30a609293 (diff) | |
download | cpython-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 'Doc/c-api/conversion.rst')
-rw-r--r-- | Doc/c-api/conversion.rst | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/Doc/c-api/conversion.rst b/Doc/c-api/conversion.rst index ad3f2fa..e5f83ff 100644 --- a/Doc/c-api/conversion.rst +++ b/Doc/c-api/conversion.rst @@ -51,21 +51,6 @@ The return value (*rv*) for these functions should be interpreted as follows: The following functions provide locale-independent string to number conversions. -.. cfunction:: double PyOS_ascii_strtod(const char *nptr, char **endptr) - - Convert a string to a :ctype:`double`. This function behaves like the Standard C - function :cfunc:`strtod` does in the C locale. It does this without changing the - current locale, since that would not be thread-safe. - - :cfunc:`PyOS_ascii_strtod` should typically be used for reading configuration - files or other non-user input that should be locale independent. - - See the Unix man page :manpage:`strtod(2)` for details. - - .. deprecated:: 3.1 - Use :cfunc:`PyOS_string_to_double` instead. - - .. cfunction:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_exception) Convert a string ``s`` to a :ctype:`double`, raising a Python @@ -100,20 +85,6 @@ The following functions provide locale-independent string to number conversions. .. versionadded:: 3.1 -.. cfunction:: char* PyOS_ascii_formatd(char *buffer, size_t buf_len, const char *format, double d) - - Convert a :ctype:`double` to a string using the ``'.'`` as the decimal - separator. *format* is a :cfunc:`printf`\ -style format string specifying the - number format. Allowed conversion characters are ``'e'``, ``'E'``, ``'f'``, - ``'F'``, ``'g'`` and ``'G'``. - - The return value is a pointer to *buffer* with the converted string or NULL if - the conversion failed. - - .. deprecated:: 3.1 - Use :cfunc:`PyOS_double_to_string` instead. - - .. cfunction:: char* PyOS_double_to_string(double val, char format_code, int precision, int flags, int *ptype) Convert a :ctype:`double` *val* to a string using supplied @@ -148,16 +119,6 @@ The following functions provide locale-independent string to number conversions. .. versionadded:: 3.1 -.. cfunction:: double PyOS_ascii_atof(const char *nptr) - - Convert a string to a :ctype:`double` in a locale-independent way. - - See the Unix man page :manpage:`atof(2)` for details. - - .. deprecated:: 3.1 - Use :cfunc:`PyOS_string_to_double` instead. - - .. cfunction:: char* PyOS_stricmp(char *s1, char *s2) Case insensitive comparison of strings. The function works almost |