summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-10-31 09:42:39 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-10-31 09:42:39 (GMT)
commit09823a2e215bea1bde9941766f8d11c0aee26b76 (patch)
tree7a7a59a08e560f7c33442ddda1205c9318b2bd12 /Misc
parentba26b39115bfaba16855ca30cd6ca0e3515fe0b6 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8fcef1d..e269505 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.