Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed2.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.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'python.': 0.02; 'sys': 0.07; 'oh,': 0.09; 'subject: [': 0.09; 'python': 0.11; 'def': 0.12; '(via': 0.16; 'foo()': 0.16; 'foo():': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'segfault': 0.16; 'subject:"]': 0.16; 'wrote:': 0.18; 'import': 0.22; 'subject:problem': 0.24; 'switched': 0.24; 'header:In-Reply- To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'getting': 0.31; 'fri,': 0.33; 'subject:with': 0.35; 'received:209.85': 0.35; 'received:209.85.220': 0.35; 'skip:s 30': 0.35; 'received:google.com': 0.35; 'scheme': 0.36; 'received:209': 0.37; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'easy': 0.60; 'subject:The': 0.64; 'dont': 0.67; 'rusi': 0.91; '2013': 0.98 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:to :content-type; bh=8rtDBDv8eEXosvrvDJLFerpc8Qepl9o0gjOKjDK7k1g=; b=FjZHuDL7TrWL9HWHfWnWMOLit52+V1/I9Z4H8CJjSRupCt3HeeoS9czlPvH/Ypb9sB q4QtwxyKoeLmDkJtdNcPS69yLgk4yIwNLatLlJ7dJQMS9DhUdXTycoU8Z42zkzMByyLU IvtG05C6v5DRMBVQ2TZH4o15TsUdr+/wBUuhKvAS+xllzD2yNL0bOt9sdQYN41uuDxhF AroyqLUF1nAyYBJjCQwZEQ8DCIhSyuUGeV+twWjqWVefVY0tNguA2FO/ca5w/E2Cx2hu F1QwOW3+EhHLa0QOhBgAVQSOaUuWTplzLEqzIG4TSNLXSqtKB4OA20Jzn/OxozVpPjt0 NpfQ== MIME-Version: 1.0 X-Received: by 10.58.214.105 with SMTP id nz9mr8383029vec.58.1370532401355; Thu, 06 Jun 2013 08:26:41 -0700 (PDT) In-Reply-To: References: <687dea63-84da-4c45-9366-cb5a10665d1f@googlegroups.com> <51ab95d5$0$29966$c3e8da3$5496439d@news.astraweb.com> <51ad7daf$0$11118$c3e8da3@news.astraweb.com> <31ca14e1-973d-44e6-886c-011a55755d76@googlegroups.com> <51afe7cf$0$29966$c3e8da3$5496439d@news.astraweb.com> Date: Fri, 7 Jun 2013 01:26:40 +1000 Subject: Re: Bools and explicitness [was Re: PyWart: The problem with "print"] From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 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: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1370532402 news.xs4all.nl 15979 [2001:888:2000:d::a6]:39883 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:47230 On Fri, Jun 7, 2013 at 12:09 AM, rusi wrote: > When we switched from to python (via Scheme and a haskell- > predecessor), I dont remember ever getting a segmentation fault. Oh, it's easy to segfault Python. import sys sys.setrecursionlimit(999999999) def foo(): foo() foo() :) ChrisA