このページの例: https://wiki.python.org/moin/CrashingPython#Exhausting_Resources なぜ私のpython 2.7で再現できないのですか なぜpythonがクラッシュするのですか?この場合、pythonがクラッシュしないのはなぜですか?
$ python
Python 2.4.2 (#2, Sep 30 2005, 21:19:01)
[GCC 4.0.2 20050808 (prerelease) (Ubuntu 4.0.1-4ubuntu8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> f = lambda: None
>>> for i in xrange(1000000):
... f = f.__call__
...
>>> del f
Segmentation fault
この問題を含め、常にバグが修正されています。これがなぜPython 2.7で再現できないのかについて具体的な説明があるのはなぜですか? –
私はこれをPython 2.4.6で再現することさえできません。そのため、[変更履歴](https://hg.python.org/cpython/file/2.4/Misc/NEWS)を検索するための狭い範囲が得られます。 )。 –
そこには:http://bugs.python.org/issue532646、Python 2.4.4で修正されています。 –