diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-30 12:12:25 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-30 12:12:25 (GMT) |
commit | 813363743d4f46062b1d5149d62252c0e2794289 (patch) | |
tree | e560c6e9c8b3b73381f0ae162cd096efa324dd10 /Misc | |
parent | ddac33882b7c51c4b0770fd39adaee33dfcd9a1c (diff) | |
download | cpython-813363743d4f46062b1d5149d62252c0e2794289.zip cpython-813363743d4f46062b1d5149d62252c0e2794289.tar.gz cpython-813363743d4f46062b1d5149d62252c0e2794289.tar.bz2 |
Issue #5211: Complete removal of implicit coercions for the complex
type. Coercion for arithmetic operations was already removed in
r78280, but that commit didn't remove coercion for rich comparisons.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.7 Release Candidate 1? Core and Builtins ----------------- +- Issue #5211: Implicit coercion for the complex type is now completely + removed. (Coercion for arithmetic operations was already removed in 2.7 + alpha 4, but coercion for rich comparisons was accidentally left in.) + - Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and error handler, instead of writing to the C stderr file in utf-8 |