[Python-checkins] r79458 - in python/branches/py3k: Misc/NEWS

mark.dickinson python-checkins at python.org
Sat Mar 27 12:16:00 CET 2010


Author: mark.dickinson
Date: Sat Mar 27 12:16:00 2010
New Revision: 79458

Log:
Merged revisions 79457 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79457 | mark.dickinson | 2010-03-27 11:14:37 +0000 (Sat, 27 Mar 2010) | 1 line
  
  Add Misc/NEWS entry for r79455.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Sat Mar 27 12:16:00 2010
@@ -293,6 +293,11 @@
 Library
 -------
 
+- Comparisons using one of <, <=, >, >= between a complex instance and
+  a Fractions instance now raise TypeError instead of returning
+  True/False.  This makes Fraction <=> complex comparisons consistent with
+  int <=> complex, float <=> complex, and complex <=> complex comparisons.
+
 - Issue #8139: ossaudiodev didn't initialize its types properly, therefore
   some methods (such as oss_mixer_device.fileno()) were not available.
   Initial patch by Bertrand Janin.


More information about the Python-checkins mailing list