[issue47191] inspect - getasyncgeneratorstate, getasyncgeneratorlocals

2022-04-01 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Seems to be duplicate of https://bugs.python.org/issue35759 -- nosy: +xtreak ___ Python tracker ___ ___

[issue47191] inspect - getasyncgeneratorstate, getasyncgeneratorlocals

2022-04-01 Thread Animatea Animatea
New submission from Animatea Animatea : Create inspect introspection functions for asyncgen. ```py ASYNCGEN_CREATED = 'ASYNCGEN_CREATED' ASYNCGEN_RUNNING = 'ASYNCGEN_RUNNING' ASYNCGEN_SUSPENDED = 'ASYNCGEN_SUSPENDED' ASYNCGEN_CLOSED = 'ASYNCGEN_CLOSED' def getasyncgeneratorstate(asyncgenerator