Changes between Version 2 and Version 3 of Ticket #29382
- Timestamp:
- May 5, 2018, 5:52:54 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29382 – Description
v2 v3 1 Some objects have __ call __ definedbut have sub-attributes.1 Some objects are callable but have sub-attributes. 2 2 In my case the wtforms Label object. 3 3 I cannot access Label.text because Label is callable and the resulting str object has not the attribute text. 4 Please evaluate first the object fully and then check if __ call __ is available. Elsewise the behaviour is inconsistent and confusing. 4 Please evaluate first the object fully and then check if object is callable. Elsewise the behaviour is inconsistent and confusing. 5 6 Sorry for the changes