diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-10-31 09:42:39 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-10-31 09:42:39 (GMT) |
commit | 09823a2e215bea1bde9941766f8d11c0aee26b76 (patch) | |
tree | 7a7a59a08e560f7c33442ddda1205c9318b2bd12 /Misc | |
parent | ba26b39115bfaba16855ca30cd6ca0e3515fe0b6 (diff) | |
download | cpython-09823a2e215bea1bde9941766f8d11c0aee26b76.zip cpython-09823a2e215bea1bde9941766f8d11c0aee26b76.tar.gz cpython-09823a2e215bea1bde9941766f8d11c0aee26b76.tar.bz2 |
Deprecate PyOS_ascii_strtod and PyOS_ascii_atof, and document the replacement function PyOS_string_to_double.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1414,6 +1414,9 @@ Documentation C-API ----- +- Add new C-API function PyOS_string_to_double, and deprecated + PyOS_ascii_atof and PyOS_ascii_strtod. + - Removed _PyOS_double_to_string. Use PyOS_double_to_string instead. This is in preparation for (but not strictly related to) issue #7117, short float repr. |