[issue3716] mistake in 3.4.2 Customizing attribute access

2008-08-30 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks, fixed in r66063. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3716] mistake in 3.4.2 Customizing attribute access

2008-08-28 Thread Alex7564
Alex7564 <[EMAIL PROTECTED]> added the comment: I was talking about Python Reference Manual (http://docs.python.org/ref/attribute-access.html) ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3716] mistake in 3.4.2 Customizing attribute access

2008-08-28 Thread Alex7564
Alex7564 <[EMAIL PROTECTED]> added the comment: "Note that if the attribute is found through the normal mechanism, __getattr__() is not called." "because otherwise __setattr__() would have no way to access other attributes of the instance." I think it's __getattr__() instead of __setattr__() __

[issue3716] mistake in 3.4.2 Customizing attribute access

2008-08-28 Thread Alex7564
New submission from Alex7564 <[EMAIL PROTECTED]>: "Note that if the attribute is found through the normal mechanism, __getattr__() is not called." "...because otherwise __setattr__() would have no way to access other attributes of the instance." I think it should be __getattr__() instead of __se