Home
last modified time | relevance | path

Searched refs:asyncgen (Results 1 – 13 of 13) sorted by relevance

/dports/devel/nuitka/Nuitka-0.6.17/nuitka/build/static_src/
H A DCompiledAsyncgenType.c52 CHECK_OBJECT(asyncgen); in Nuitka_Asyncgen_get_name()
55 return asyncgen->m_name; in Nuitka_Asyncgen_get_name()
59 CHECK_OBJECT(asyncgen); in Nuitka_Asyncgen_set_name()
78 CHECK_OBJECT(asyncgen); in Nuitka_Asyncgen_get_qualname()
85 CHECK_OBJECT(asyncgen); in Nuitka_Asyncgen_set_qualname()
104 CHECK_OBJECT(asyncgen); in Nuitka_Asyncgen_get_ag_await()
116 CHECK_OBJECT(asyncgen); in Nuitka_Asyncgen_get_code()
124 CHECK_OBJECT(asyncgen); in Nuitka_Asyncgen_set_code()
131 CHECK_OBJECT(asyncgen); in Nuitka_Asyncgen_get_frame()
179 yielded = ((asyncgen_code)asyncgen->m_code)(asyncgen, returned_value); in Nuitka_YieldFromAsyncgenCore()
[all …]
H A DCompiledFrameType.c473 … struct Nuitka_AsyncgenObject *asyncgen = (struct Nuitka_AsyncgenObject *)frame->m_frame.f_gen; in Nuitka_Frame_clear() local
476 close_exception = !_Nuitka_Asyncgen_close(asyncgen); in Nuitka_Frame_clear()
H A DCompiledGeneratorType.c864 static bool _Nuitka_Asyncgen_close(struct Nuitka_AsyncgenObject *asyncgen);
/dports/devel/nuitka/Nuitka-0.6.17/nuitka/build/include/nuitka/
H A Dcompiled_asyncgen.h135 EXC_TYPE(thread_state) = asyncgen->m_exc_state.exc_type; in SAVE_ASYNCGEN_EXCEPTION()
136 EXC_VALUE(thread_state) = asyncgen->m_exc_state.exc_value; in SAVE_ASYNCGEN_EXCEPTION()
137 EXC_TRACEBACK(thread_state) = asyncgen->m_exc_state.exc_traceback; in SAVE_ASYNCGEN_EXCEPTION()
154 asyncgen->m_exc_state.exc_type = saved_exception_type; in SAVE_ASYNCGEN_EXCEPTION()
155 asyncgen->m_exc_state.exc_value = saved_exception_value; in SAVE_ASYNCGEN_EXCEPTION()
156 asyncgen->m_exc_state.exc_traceback = saved_exception_traceback; in SAVE_ASYNCGEN_EXCEPTION()
187 EXC_TYPE(thread_state) = asyncgen->m_exc_state.exc_type; in RESTORE_ASYNCGEN_EXCEPTION()
188 EXC_VALUE(thread_state) = asyncgen->m_exc_state.exc_value; in RESTORE_ASYNCGEN_EXCEPTION()
191 asyncgen->m_exc_state.exc_type = saved_exception_type; in RESTORE_ASYNCGEN_EXCEPTION()
192 asyncgen->m_exc_state.exc_value = saved_exception_value; in RESTORE_ASYNCGEN_EXCEPTION()
[all …]
/dports/devel/py-graphql-core2/graphql-core-2.2.1/graphql/execution/executors/
H A Dasyncio_utils.py6 def asyncgen_to_observable(asyncgen, loop=None): argument
8 task = ensure_future(iterate_asyncgen(asyncgen, observer), loop=loop)
22 async def iterate_asyncgen(asyncgen, observer): argument
24 async for item in asyncgen:
H A Dasyncio.py43 def asyncgen_to_observable(asyncgen, loop=None): argument
/dports/www/py-scrapy/Scrapy-2.5.1/scrapy/utils/
H A Dpy36.py4 from scrapy.utils.asyncgen import collect_asyncgen # noqa: F401
H A Dspider.py7 from scrapy.utils.asyncgen import collect_asyncgen
/dports/devel/nuitka/Nuitka-0.6.17/
H A DChangelog.rst2209 - Python3.5+: Fix, coroutines and asyncgen could continue iteration of
2250 - Python3.7: Fix misdetection as asyncgen for a normal generator, if
2492 - Python3.6: Follow coroutine fixes in our asyncgen implementation as
3588 - Python3.6: Fix, generators, coroutines, and asyncgen were not
3596 - Python3.7: Fix, asyncgen expressions can be created in normal
4041 - Python3.6: Make sure to disconnect finished asyncgen from their
4047 - Python3.6: Explicit frame closes of frames owned by asyncgen could
4065 - Python 3.5: Fixed exception handling with coroutines and asyncgen
4168 and asyncgen bodies, and not anymore to the creation of these
4177 - Finally the asyncgen tests can be enabled in the CPython 3.6 test
[all …]
/dports/lang/python310/Python-3.10.1/Doc/library/
H A Dasyncio-eventloop.rst1206 * 'asyncgen' (optional): Asynchronous generator that caused
/dports/lang/python311/Python-3.11.0a3/Doc/library/
H A Dasyncio-eventloop.rst1202 * 'asyncgen' (optional): Asynchronous generator that caused
/dports/devel/py-uvloop/uvloop-0.16.0/uvloop/
H A Dloop.pyx3159 'asyncgen': agen
/dports/www/py-scrapy/Scrapy-2.5.1/docs/
H A Dnews.rst78 :mod:`scrapy.utils.asyncgen`. (:issue:`4900`)