# HG changeset patch # User Paul Boddie # Date 1479856976 -3600 # Node ID 91d68d0e4a154fbc53e7d864aa6ead68e8873da4 # Parent b9e7f0aae13c5b0d0a7a19511900a93b0647d75e Fixed variable names making attribute chain access details available. diff -r b9e7f0aae13c -r 91d68d0e4a15 deducer.py --- a/deducer.py Tue Nov 22 23:31:03 2016 +0100 +++ b/deducer.py Wed Nov 23 00:22:56 2016 +0100 @@ -2019,19 +2019,19 @@ only_instance_types, module_types) = self.get_types_for_attribute(attrname) - all_accessor_kinds = set() - all_provider_kinds = set() + accessor_kinds = set() + provider_kinds = set() if class_types: - all_accessor_kinds.add("") - all_accessor_kinds.add("") - all_provider_kinds.add("") + accessor_kinds.add("") + accessor_kinds.add("") + provider_kinds.add("") if only_instance_types: - all_accessor_kinds.add("") - all_provider_kinds.add("") + accessor_kinds.add("") + provider_kinds.add("") if module_types: - all_accessor_kinds.add("") - all_provider_kinds.add("") + accessor_kinds.add("") + provider_kinds.add("") attrs = set() for type in combine_types(class_types, only_instance_types, module_types):