Bools and explicitness [was Re: PyWart: The problem with "print"]

Chris Angelico rosuav at gmail.com
Thu Jun 6 11:26:40 EDT 2013


On Fri, Jun 7, 2013 at 12:09 AM, rusi <rustompmody at gmail.com> 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



More information about the Python-list mailing list