Lines Matching refs:item
10 {%- for item in ['__new__', '__init__'] %}
11 {%- if item in members and item not in inherited_members %}
15 {%- for item in ['__new__', '__init__'] %}
16 {%- if item in methods %}
17 {%- set dummy = methods.remove(item) %}
21 {%- for item in inherited_members %}
22 {%- if item in methods %}
23 {%- set dummy = methods.remove(item) %}
25 {%- if item in attributes %}
26 {%- set dummy = attributes.remove(item) %}
31 {%- for item in members %}
32 … {%- if item not in inherited_members and item not in all_methods and item not in all_attributes %}
33 {%- set dummy = enumerations.append(item) %}
42 {%+ for item in enumerations %}
43 ~{{ fullname }}.{{ item }}
52 {%+ for item in methods %}
53 ~{{ fullname }}.{{ item }}
62 {%+ for item in attributes %}
63 ~{{ fullname }}.{{ item }}
71 {%+ for item in methods %}
72 .. automethod:: {{ item }}
80 {%+ for item in attributes %}
81 .. autoattribute:: {{ item }}