Home | History | Annotate | Download | only in test

Lines Matching refs:def

8     def __init__(self, seqn):
10 def __getitem__(self, i):
15 def __init__(self, seqn):
18 def __iter__(self):
20 def next(self):
28 def __init__(self, seqn):
31 def __iter__(self):
37 def __init__(self, seqn):
40 def next(self):
48 def __init__(self, seqn):
51 def __iter__(self):
53 def next(self):
58 def __init__(self, seqn):
61 def __iter__(self):
69 def test_basicfunction(self):
76 def test_getitemseqn(self):
81 def test_iteratorseqn(self):
86 def test_iteratorgenerator(self):
91 def test_noniterable(self):
94 def test_illformediterable(self):
97 def test_exception_propagation(self):
100 def test_argumentcheck(self):
107 def test_tuple_reuse(self):
131 def test_simple(self):
133 def __getitem__(self, i):
137 def __len__(self):
145 def test_classic_class(self):
147 def __reversed__(self):
151 def test_xrange_optimization(self):
156 def test_len(self):
166 def __len__(self):
171 def __getitem__(self, index):
177 def test_gc(self):
179 def __len__(self):
181 def __getitem__(self, index):
187 def test_args(self):
191 def test_bug1229429(self):
196 def f():
209 def test_objmethods(self):
212 def __getitem__(self): return 1
217 def __len__(self): return 2
224 def test_basicfunction(self):
243 def test_main(verbose=None):