summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 581ee9a0d5..e8fc0b0802 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,11 @@ Core and Builtins
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.
+
- logging: Added LOG_FTP to SysLogHandler and updated documentation.
- Issue #8205: Remove the "Modules" directory from sys.path when Python is