def test__isfake_currently_true(self): from __pypy__ import isfake import select assert isfake(select)
def test__isfake(self): from __pypy__ import isfake assert not isfake(map) assert not isfake(object) assert not isfake(isfake)