summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-07-02 17:19:22 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-07-02 17:19:22 (GMT)
commitf92146938377651100db8a00bb3356ceff760037 (patch)
tree5ce1689d4ea682c943dd07212ada086bdc4778b8 /Misc
parent585ad8ae5e352c99bbd87955c64cc9a0654da8c3 (diff)
downloadcpython-f92146938377651100db8a00bb3356ceff760037.zip
cpython-f92146938377651100db8a00bb3356ceff760037.tar.gz
cpython-f92146938377651100db8a00bb3356ceff760037.tar.bz2
Merged revisions 73774 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73774 | benjamin.peterson | 2009-07-02 12:06:17 -0500 (Thu, 02 Jul 2009) | 1 line 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 7b869b5..4870c6a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,9 @@ Core and Builtins
- Issue #4547: When debugging a very large function, it was not always
possible to update the lineno attribute of the current frame.
+- Issue #6119: Fixed a incorrect Py3k warning about order comparisons of builtin
+ functions and methods.
+
- Issue #5330: C functions called with keyword arguments were not reported by
the various profiling modules (profile, cProfile). Patch by Hagen F�rstenau.