commit | 374274db7f7536836d0acd598ff6001aa5ed06c8 | [log] [tgz] |
---|---|---|
author | Éric Araujo <merwok@netwok.org> | Sat Mar 19 04:29:36 2011 +0100 |
committer | Éric Araujo <merwok@netwok.org> | Sat Mar 19 04:29:36 2011 +0100 |
tree | 178c43060f69ac301fcd14db9b81b74a13626c00 | |
parent | 5136867c1b8573de23f7e7f95f8292846aab507e [diff] [blame] |
Fix the total_ordering decorator to handle cross-type comparisons that could lead to infinite recursion (closes #10042).
diff --git a/Misc/NEWS b/Misc/NEWS index 9c136aa..c42d89b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Library ------- +- Issue #10042: Fixed the total_ordering decorator to handle cross-type + comparisons that could lead to infinite recursion. + - Issue #10979: unittest stdout buffering now works with class and module setup and teardown.