diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-03-27 11:14:37 +0000 |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-03-27 11:14:37 +0000 |
commit | 9588d998d593f165403dd9f105b55aa2489ce47c (patch) | |
tree | 0c3fe15cbc59e1c22fb116fc1aea2400bd6e3f1c | |
parent | 71b7fac07ba978630844bdabee59492e329d036c (diff) | |
download | cpython-git-9588d998d593f165403dd9f105b55aa2489ce47c.tar.gz |
Add Misc/NEWS entry for r79455.
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |