summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-10-31 09:28:12 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-10-31 09:28:12 (GMT)
commitba26b39115bfaba16855ca30cd6ca0e3515fe0b6 (patch)
tree8be1695e351bff4a3a3945e5e4a55f64cd4954ac
parentb2e31a1c63aee016fe457f9328c30d74b746429f (diff)
downloadcpython-ba26b39115bfaba16855ca30cd6ca0e3515fe0b6.zip
cpython-ba26b39115bfaba16855ca30cd6ca0e3515fe0b6.tar.gz
cpython-ba26b39115bfaba16855ca30cd6ca0e3515fe0b6.tar.bz2
Move a Misc/NEWS entry to right section.
-rw-r--r--Misc/NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4d6225d..8fcef1d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,10 +15,6 @@ Core and Builtins
- Remove length limitation when constructing a complex number from a
unicode string.
-- 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.
-
- Issue #1087418: Boost performance of bitwise operations for longs.
- Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which
@@ -1418,6 +1414,10 @@ Documentation
C-API
-----
+- 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.
+
- Issue #6624: PyArg_ParseTuple with "s" format when parsing argument with
NULL: Bogus TypeError detail string.