Lines Matching refs:firstiter
1641 self.assertIsNone(old.firstiter)
1644 firstiter = lambda *a: None
1645 sys.set_asyncgen_hooks(firstiter=firstiter)
1647 self.assertIs(hooks.firstiter, firstiter)
1648 self.assertIs(hooks[0], firstiter)
1655 self.assertIs(hooks.firstiter, firstiter)
1656 self.assertIs(hooks[0], firstiter)
1662 self.assertIsNone(cur.firstiter)