Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #22258
| From | Christian Heimes <lists@cheimes.de> |
|---|---|
| Subject | Re: python segfault |
| Date | 2012-03-28 00:45 +0200 |
| References | <20120327222757.GA22125@terra.cms.at> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1055.1332888367.3037.python-list@python.org> (permalink) |
Am 28.03.2012 00:27, schrieb Michael Poeltl: > hi, > > can anybody tell why this 'little stupid *thing* of code' let's python-3.2.2, 2.6.X or python 2.7.2 segfault? The code segfaults because you have increased the recursion limit. The amount of recursions is limited by the stack size. A C program with a usually stack size can have about 4000 recursions. Python takes at least two stack levels for each recursion. The documentation http://docs.python.org/library/sys.html#sys.setrecursionlimit contains a warning, too. Christian
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: python segfault Christian Heimes <lists@cheimes.de> - 2012-03-28 00:45 +0200
csiph-web