Home | History | Annotate | Download | only in test

Lines Matching full:firstiter

1197         self.assertIsNone(old.firstiter)
1200 firstiter = lambda *a: None
1201 sys.set_asyncgen_hooks(firstiter=firstiter)
1203 self.assertIs(hooks.firstiter, firstiter)
1204 self.assertIs(hooks[0], firstiter)
1211 self.assertIs(hooks.firstiter, firstiter)
1212 self.assertIs(hooks[0], firstiter)
1218 self.assertIsNone(cur.firstiter)