diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-08 07:01:56 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-08 07:01:56 (GMT) |
commit | 23f9fc344827c02cf2450f7e0903681e69db201a (patch) | |
tree | c0454c2980f0a3f768597b5e4f54896ad8970ca3 /Misc | |
parent | 06ec45e2f8108d6bfc1fa8abe80de94bc4eeb8a3 (diff) | |
download | cpython-23f9fc344827c02cf2450f7e0903681e69db201a.zip cpython-23f9fc344827c02cf2450f7e0903681e69db201a.tar.gz cpython-23f9fc344827c02cf2450f7e0903681e69db201a.tar.bz2 |
Issue #10042: Fixed the total_ordering decorator to handle cross-type
comparisons that could lead to infinite recursion.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -700,6 +700,7 @@ Bernhard Reiter Steven Reiz Roeland Rengelink Tim Rice +Francesco Ricciardi Jan Pieter Riegel Armin Rigo Nicholas Riley @@ -40,6 +40,9 @@ Core and Builtins Library ------- +- Issue #10042: Fixed the total_ordering decorator to handle cross-type + comparisons that could lead to infinite recursion. + - Issue #10686: the email package now :rfc:`2047`\ -encodes headers with non-ASCII bytes (parsed by a Bytes Parser) when doing conversion to 7bit-clean presentation, instead of replacing them with ?s. |