def g():
        x = someGeneratorRaising()
        assert type(x) is types.GeneratorType

        yield from x
Ejemplo n.º 2
0
    def g():
        x = someGeneratorRaising()
        assert type(x) is types.GeneratorType

        yield from x