[issue9744] calling __getattribute__ with wrong instance causes hang up

2010-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> works for me status: open -> closed ___ Python tracker ___ ___ Python-bugs-list maili

[issue9744] calling __getattribute__ with wrong instance causes hang up

2010-09-03 Thread Andreas Stührk
Andreas Stührk added the comment: Actually, Python behaves the way you expect it. The problem is that when that exception is created, Python tries to look up the involved class names. To do that, it tries to get the "__class__" attribute (hapens in `getinstclassname()`, which will call again

[issue9744] calling __getattribute__ with wrong instance causes hang up

2010-09-02 Thread Lily
Changes by Lily <2ch.ow...@gmail.com>: -- versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9744] calling __getattribute__ with wrong instance causes hang up

2010-09-02 Thread Lily
New submission from Lily <2ch.ow...@gmail.com>: Look for example file. Current behaviour: one file is started, A.__getattribute__ will be called repeatedly. Entire application will not react on KeyboardInterrupt. Expected behaviour: exception to be raised "TypeError: unbound method __getattri