[issue7430] "cmp" still sends messages

2009-12-04 Thread Mark Dickinson
Mark Dickinson added the comment: Fixed in r76663, r76664. Thanks for the report! -- resolution: -> fixed status: open -> closed versions: +Python 3.2 ___ Python tracker ___ __

[issue7430] "cmp" still sends messages

2009-12-03 Thread Mark Dickinson
Mark Dickinson added the comment: How about "maximum recursion depth exceeded in comparison" instead? (It's coming from PyObject_RichCompare in Objects/object.c, by the way.) -- nosy: +mark.dickinson ___ Python tracker

[issue7430] "cmp" still sends messages

2009-12-03 Thread David W. Lambert
New submission from David W. Lambert : ''' RuntimeError: maximum recursion depth exceeded in cmp Python 3.1.1 (r311:74480, Oct 2 2009, 12:29:57) [GCC 4.3.3] on linux2 ''' import itertools,pprint combos = itertools.combinations def connect(nodes,a,b): nodes[a].append(b) n