Issue621256

classification
Title: __findattr__(String) JavaDoc is wrong
Type: Severity: normal
Components: Documentation Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: fwierzbicki Nosy List: cgroves, fwierzbicki, szegedia
Priority: high Keywords:

Created on 2002-10-10.11:28:13 by szegedia, last changed 2006-09-12.03:27:47 by cgroves.

Messages
msg754 (view) Author: Attila Szegedi (szegedia) Date: 2002-10-10.11:28:13
JavaDoc for PyObject#__findattr__(String) in Jython 2.1 
says it delegates to PyObject#__findattr__(PyString), 
but in reality it's the other way round: 
PyObject#__findattr__(PyString) delegates to 
PyObject#__findattr__(String)). This can be nasty for 
people that want to override __findattr__ in a subclass...
msg755 (view) Author: Charlie Groves (cgroves) Date: 2006-09-12.03:27:47
Logged In: YES 
user_id=1174327

Fixed in r2931. 
History
Date User Action Args
2002-10-10 11:28:13szegediacreate