summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-07-02 17:06:17 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-07-02 17:06:17 (GMT)
commit1bf4765369d7a6d5f0a4ad616f8a887c8fc4af39 (patch)
tree84164ea8c9c2e369ca524aff80b9476efe1e0f11 /Misc
parent0c6de43dd936327ab4c57338c5e20f6e8824e7ee (diff)
downloadcpython-1bf4765369d7a6d5f0a4ad616f8a887c8fc4af39.zip
cpython-1bf4765369d7a6d5f0a4ad616f8a887c8fc4af39.tar.gz
cpython-1bf4765369d7a6d5f0a4ad616f8a887c8fc4af39.tar.bz2
only order comparisons are removed in py3k #6119
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 03cf45c..b5c716a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #6119: Fixed a incorrect Py3k warning about order comparisons of builtin
+ functions and methods.
+
- Issue #6347: Include inttypes.h as well as stdint.h in pyport.h.
This fixes a build failure on HP-UX: int32_t and uint32_t are
defined in inttypes.h instead of stdint.h on that platform.