This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kaizhu
Recipients kaizhu
Date 2009-11-17.11:01:32
SpamBayes Score 5.8144902e-08
Marked as misclassified No
Message-id <1258455694.17.0.877793280726.issue7338@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.1.1 (r311:74480, Sep 13 2009, 17:17:12)
[GCC 4.3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> class Foo(object):
...   def __getattribute__(self, attr):
...     try: return object.__getattribute__(attr)
...     except: return self.x
...
>>> Foo().y
Fatal Python error: Cannot recover from stack overflow.
Aborted
$

python2.6 recovers from above w/ a RuntimeError
History
Date User Action Args
2009-11-17 11:01:34kaizhusetrecipients: + kaizhu
2009-11-17 11:01:34kaizhusetmessageid: <1258455694.17.0.877793280726.issue7338@psf.upfronthosting.co.za>
2009-11-17 11:01:32kaizhulinkissue7338 messages
2009-11-17 11:01:32kaizhucreate