Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.052 X-Spam-Evidence: '*H*': 0.90; '*S*': 0.00; 'cc:addr:python-list': 0.11; 'jan': 0.12; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'reedy': 0.16; 'wrote:': 0.18; 'stack': 0.19; 'cc:addr:python.org': 0.22; 'documented': 0.24; 'cc:2**0': 0.24; 'tracker': 0.26; 'header:In-Reply-To:1': 0.27; 'url:bugs': 0.29; 'message-id:@mail.gmail.com': 0.30; '13,': 0.31; 'crash': 0.31; 'url:python': 0.33; 'could': 0.34; 'received:google.com': 0.35; 'add': 0.35; 'there': 0.35; 'url:org': 0.36; 'error.': 0.37; 'expected': 0.38; 'url:library': 0.38; 'issue': 0.38; 'pm,': 0.38; 'url:3': 0.61; '2015': 0.84; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=Usq0ADKYiwzhSY/Rn08Oi0wUZChRnUCvz8gWt8kUyjE=; b=pjLpUrndN2mwkL8RhokttYN6gOCMB3ebsK2BMpdtIwEftn9/J4dhVZd6zp27BOmzXV jjh0VoVAPn0MNW9RfvEI6Js+w/MlNHB7F0Ioj4rDsOlC/7w1jxngH8wuLLun5aX8i+g9 mpRDfcZN+XHT+ulIoLcmJWIfK4gXsuoEF/h6NIafaFzeYaGdZMcNOYxEkox+7Iox2bWX fQtXsvi/pBxZBiTACwj8DJLQ/eYA/yIhgi0oHgwNVcCBFs9qWMGZWxEA0CEa/NMU9FVW iuyb6133TRXk7CsdjRQMza2EkAUqRYsZkW9FfAKo8Zko5Zql74A/bfauFMwYTWZBHIvl V6qQ== MIME-Version: 1.0 X-Received: by 10.107.32.138 with SMTP id g132mr9605100iog.43.1421146607189; Tue, 13 Jan 2015 02:56:47 -0800 (PST) In-Reply-To: References: <54ABB88A.7070504@r3dsolutions.com> <54ABC52A.1050507@davea.name> <54ABE383.3020801@r3dsolutions.com> <54AC97D9.4010504@r3dsolutions.com> <54ACAA04.60801@r3dsolutions.com> <54ADC99F.3020405@stoneleaf.us> <54B44A64.7010105@r3dsolutions.com> <54b4aded$0$2738$c3e8da3$76491128@news.astraweb.com> Date: Tue, 13 Jan 2015 21:56:47 +1100 Subject: Re: Comparisons and sorting of a numeric class.... From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 13 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1421146616 news.xs4all.nl 2963 [2001:888:2000:d::a6]:33485 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:83682 On Tue, Jan 13, 2015 at 9:49 PM, Terry Reedy wrote: > I would have expected an out-of-memory error. If there is not already a > crash issue on the tracker for this, you could add one. It's a stack fault, and it's a documented possibility: https://docs.python.org/2/library/sys.html#sys.setrecursionlimit https://docs.python.org/3/library/sys.html#sys.setrecursionlimit Tracker search brings up this as a definite hit, and some other maybes: http://bugs.python.org/issue6356 ChrisA