Home | History | Annotate | Download | only in test

Lines Matching refs:def

21     def __init__(self):
25 def spam(self):
30 def spam(self, value):
34 def spam(self):
40 def spam(self):
45 def spam(self, value):
49 def spam(self):
54 def _get_spam(self):
60 def spam(self):
66 def spam(self):
72 def spam(self):
76 def spam(self):
81 def test_property_decorator_baseclass(self):
96 def test_property_decorator_subclass(self):
105 def test_property_decorator_subclass_doc(self):
111 def test_property_decorator_baseclass_doc(self):
115 def test_property_decorator_doc(self):
123 def test_property_getter_doc_override(self):
142 def test_slots_docstring_copy_exception(self):
146 def spam(self):
156 def test_docstring_copy(self):
159 def spam(self):
168 def test_property_setter_copies_getter_docstring(self):
170 def __init__(self): self._spam = 1
172 def spam(self):
176 def spam(self, value):
188 def spam(self, value):
201 def test_property_new_getter_new_docstring(self):
205 def spam(self):
209 def spam(self):
215 def spam(self):
220 def spam(self):
227 def test_main():