ez-a-sync 0.32.26__cp312-cp312-win32.whl → 0.32.27__cp312-cp312-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ez-a-sync might be problematic. Click here for more details.
- a_sync/_smart.c +49 -34
- a_sync/_smart.cp312-win32.pyd +0 -0
- a_sync/a_sync/_descriptor.c +69 -54
- a_sync/a_sync/_descriptor.cp312-win32.pyd +0 -0
- a_sync/a_sync/_flags.c +13 -10
- a_sync/a_sync/_flags.cp312-win32.pyd +0 -0
- a_sync/a_sync/_helpers.c +62 -47
- a_sync/a_sync/_helpers.cp312-win32.pyd +0 -0
- a_sync/a_sync/_kwargs.c +33 -18
- a_sync/a_sync/_kwargs.cp312-win32.pyd +0 -0
- a_sync/a_sync/abstract.c +18 -11
- a_sync/a_sync/abstract.cp312-win32.pyd +0 -0
- a_sync/a_sync/base.c +168 -153
- a_sync/a_sync/base.cp312-win32.pyd +0 -0
- a_sync/a_sync/flags.c +6 -3
- a_sync/a_sync/flags.cp312-win32.pyd +0 -0
- a_sync/a_sync/function.c +81 -66
- a_sync/a_sync/function.cp312-win32.pyd +0 -0
- a_sync/a_sync/method.c +122 -107
- a_sync/a_sync/method.cp312-win32.pyd +0 -0
- a_sync/a_sync/modifiers/manager.c +46 -31
- a_sync/a_sync/modifiers/manager.cp312-win32.pyd +0 -0
- a_sync/a_sync/property.c +82 -67
- a_sync/a_sync/property.cp312-win32.pyd +0 -0
- a_sync/async_property/cached.c +52 -37
- a_sync/async_property/cached.cp312-win32.pyd +0 -0
- a_sync/async_property/proxy.c +25 -10
- a_sync/async_property/proxy.cp312-win32.pyd +0 -0
- a_sync/asyncio/as_completed.c +21 -6
- a_sync/asyncio/as_completed.cp312-win32.pyd +0 -0
- a_sync/asyncio/create_task.c +23 -8
- a_sync/asyncio/create_task.cp312-win32.pyd +0 -0
- a_sync/asyncio/gather.c +30 -15
- a_sync/asyncio/gather.cp312-win32.pyd +0 -0
- a_sync/asyncio/igather.c +24 -9
- a_sync/asyncio/igather.cp312-win32.pyd +0 -0
- a_sync/asyncio/sleep.c +19 -4
- a_sync/asyncio/sleep.cp312-win32.pyd +0 -0
- a_sync/debugging.c +45 -30
- a_sync/debugging.cp312-win32.pyd +0 -0
- a_sync/exceptions.c +18 -11
- a_sync/exceptions.cp312-win32.pyd +0 -0
- a_sync/executor.py +44 -0
- a_sync/functools.c +24 -9
- a_sync/functools.cp312-win32.pyd +0 -0
- a_sync/iter.c +88 -73
- a_sync/iter.cp312-win32.pyd +0 -0
- a_sync/primitives/_debug.c +49 -34
- a_sync/primitives/_debug.cp312-win32.pyd +0 -0
- a_sync/primitives/_loggable.c +25 -10
- a_sync/primitives/_loggable.cp312-win32.pyd +0 -0
- a_sync/primitives/locks/counter.c +70 -55
- a_sync/primitives/locks/counter.cp312-win32.pyd +0 -0
- a_sync/primitives/locks/event.c +61 -45
- a_sync/primitives/locks/event.cp312-win32.pyd +0 -0
- a_sync/primitives/locks/prio_semaphore.c +78 -63
- a_sync/primitives/locks/prio_semaphore.cp312-win32.pyd +0 -0
- a_sync/primitives/locks/semaphore.c +71 -56
- a_sync/primitives/locks/semaphore.cp312-win32.pyd +0 -0
- a_sync/utils/repr.c +41 -26
- a_sync/utils/repr.cp312-win32.pyd +0 -0
- {ez_a_sync-0.32.26.dist-info → ez_a_sync-0.32.27.dist-info}/METADATA +1 -1
- {ez_a_sync-0.32.26.dist-info → ez_a_sync-0.32.27.dist-info}/RECORD +66 -66
- {ez_a_sync-0.32.26.dist-info → ez_a_sync-0.32.27.dist-info}/WHEEL +0 -0
- {ez_a_sync-0.32.26.dist-info → ez_a_sync-0.32.27.dist-info}/licenses/LICENSE.txt +0 -0
- {ez_a_sync-0.32.26.dist-info → ez_a_sync-0.32.27.dist-info}/top_level.txt +0 -0
a_sync/iter.c
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.1.
|
|
1
|
+
/* Generated by Cython 3.1.3 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -32,8 +32,8 @@ END: Cython Metadata */
|
|
|
32
32
|
#elif PY_VERSION_HEX < 0x03080000
|
|
33
33
|
#error Cython requires Python 3.8+.
|
|
34
34
|
#else
|
|
35
|
-
#define __PYX_ABI_VERSION "
|
|
36
|
-
#define CYTHON_HEX_VERSION
|
|
35
|
+
#define __PYX_ABI_VERSION "3_1_3"
|
|
36
|
+
#define CYTHON_HEX_VERSION 0x030103F0
|
|
37
37
|
#define CYTHON_FUTURE_DIVISION 1
|
|
38
38
|
/* CModulePreamble */
|
|
39
39
|
#include <stddef.h>
|
|
@@ -396,6 +396,9 @@ END: Cython Metadata */
|
|
|
396
396
|
enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
|
|
397
397
|
#endif
|
|
398
398
|
#endif
|
|
399
|
+
#ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
|
|
400
|
+
#define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
|
|
401
|
+
#endif
|
|
399
402
|
#ifndef __has_attribute
|
|
400
403
|
#define __has_attribute(x) 0
|
|
401
404
|
#endif
|
|
@@ -3338,22 +3341,22 @@ static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k);
|
|
|
3338
3341
|
static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
3339
3342
|
|
|
3340
3343
|
/* TypeImport.proto */
|
|
3341
|
-
#ifndef
|
|
3342
|
-
#define
|
|
3344
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_3
|
|
3345
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_3
|
|
3343
3346
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
3344
3347
|
#include <stdalign.h>
|
|
3345
3348
|
#endif
|
|
3346
3349
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
3347
|
-
#define
|
|
3350
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) alignof(s)
|
|
3348
3351
|
#else
|
|
3349
|
-
#define
|
|
3352
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) sizeof(void*)
|
|
3350
3353
|
#endif
|
|
3351
|
-
enum
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3354
|
+
enum __Pyx_ImportType_CheckSize_3_1_3 {
|
|
3355
|
+
__Pyx_ImportType_CheckSize_Error_3_1_3 = 0,
|
|
3356
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3 = 1,
|
|
3357
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3 = 2
|
|
3355
3358
|
};
|
|
3356
|
-
static PyTypeObject *
|
|
3359
|
+
static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_3 check_size);
|
|
3357
3360
|
#endif
|
|
3358
3361
|
|
|
3359
3362
|
/* Import.proto */
|
|
@@ -3579,10 +3582,10 @@ static unsigned long __Pyx_get_runtime_version(void);
|
|
|
3579
3582
|
static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer);
|
|
3580
3583
|
|
|
3581
3584
|
/* VoidPtrImport.proto */
|
|
3582
|
-
static int
|
|
3585
|
+
static int __Pyx_ImportVoidPtr_3_1_3(PyObject *module, const char *name, void **p, const char *sig);
|
|
3583
3586
|
|
|
3584
3587
|
/* FunctionImport.proto */
|
|
3585
|
-
static int
|
|
3588
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
|
|
3586
3589
|
|
|
3587
3590
|
/* MultiPhaseInitModuleState.proto */
|
|
3588
3591
|
#if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE
|
|
@@ -4079,7 +4082,7 @@ static const char __pyx_k_ASyncGeneratorFunction__cancel[] = "_ASyncGeneratorFun
|
|
|
4079
4082
|
static const char __pyx_k_Pyx_CFunc_6a_sync_4iter_object[] = "__Pyx_CFunc_6a_sync_4iter_object__lParenobject__rParen_to_py_3obj.<locals>.wrap";
|
|
4080
4083
|
static const char __pyx_k_Pyx_CFunc_8bc18e__6a_sync_4ite[] = "__Pyx_CFunc_8bc18e__6a_sync_4iter_23_ASyncGeneratorFunction_void____etc_to_py_4self.<locals>.wrap";
|
|
4081
4084
|
static const char __pyx_k_iterable_must_be_AsyncIterable[] = "`iterable` must be AsyncIterable or Iterable, you passed {}";
|
|
4082
|
-
static const char __pyx_k_1_q_q_4wavQ_xq_5_O_q_1F_5_D_D_Q[] = "\200\001\340\004 \240\001\330\004\033\2301\360\n\000\005\t\210\010\220\007\220q\230\005\320\035/\250q\330\010\013\2104\210w\220a\220v\230Q\330\014\r\340\010\017\210x\220q\230\001\330\010\013\2105\220\004\220O\240?\260-\270q\330\014\022\220)\2301\230F\240!\340\010\013\2105\220\004\220D\230\n\240!\240>\260\023\260D\270\001\270\024\270Q\330\014\025\220W\230A\230_\250N\270!\330\014\027\220w\230a\230
|
|
4085
|
+
static const char __pyx_k_1_q_q_4wavQ_xq_5_O_q_1F_5_D_D_Q[] = "\200\001\340\004 \240\001\330\004\033\2301\360\n\000\005\t\210\010\220\007\220q\230\005\320\035/\250q\330\010\013\2104\210w\220a\220v\230Q\330\014\r\340\010\017\210x\220q\230\001\330\010\013\2105\220\004\220O\240?\260-\270q\330\014\022\220)\2301\230F\240!\340\010\013\2105\220\004\220D\230\n\240!\240>\260\023\260D\270\001\270\024\270Q\330\014\025\220W\230A\230_\250N\270!\330\014\027\220w\230a\230\177\320.>\270a\330\014\023\2207\230!\230?\250,\260a\340\014\017\210w\220d\230!\330\020\036\320\036/\250w\260a\260x\270q\330\021\030\230\004\230A\330\020\037\320\0370\260\007\260q\270\010\300\001\330\021\022\330\020\036\230m\2507\260!\2601\330\021\022\330\020\036\230m\2507\260!\2601\340\020\036\230c\240\021\240!\360\006\000\005\006\330\010<\270G\3001\300M\320QR\330\010\t\340'.\250a\250s\260+\270Q\330\010\t\360\n\000\005\006\330\010\025\220Q\330\013\025\220Q\220o\240Q\330\r\024\220A\220_\240L\260\001\360\006\000\005\010\200q\330\010\t\330\0147\260w\270a\270~\310Q\330\014\r\360\006\000\005\010\200s\210)\2203\220a\330\010\013\210;\220a\330\t\r\210S\220\t\230\023\230C\230x\240y\260\001\260\021\330\010\013\210<\220q\330\t\014\210H\220I\230Q\230a\330\010\013\210<\220v\230W\240A\240Q\340\010\013\210<\220x\230w\240a\240q\360\n\000\005\023\220!\340\004&\240a\330\010\023\2201\330\010\014\210M\230\023\230A\230Q\330\010\014\210K\220s\230'\240\021\240%\240{\260!\330\010\014\210K\220q\230\001\330\010\014\210J\220a\330\010\030\230\001\360\n\000\005\t\210\017\320\027'\320'<\270F\300!\360\022\000\t\"\240\021\330\010\013\2107\220!\320\0231\260\021\330\014\036\230g\240Q\320&D\300A\330\014\017\210|\2309\240C\240\177\260a\330\020)\250\030\260\021\260!\330\r\020\220\n\230#\320\035-\250T\260\027\270\001\270\037\310\001\330\014\036\230g\240Q\240o\260Q\330\014\017\210|\2309\240C\240\177\260a\330\020)\250\030\260\021\260!\330\r\020\220\n\230(\320\"3\3203D\300D\310\007\310q\320P_\320_`\330\014\036\230g\240Q\240o\260Q\330\014\017\210|\2309\240C\240\177\260a\330\020)\250\030\260\021\260!\340\010\013\320""\013\"\240#\240Q\330\014%\240X\250Q\250a\340\010\036\230k\250\034\260X\270W\300A\330\014\020\220\003\2201\330\014\020\220\001\360\006\000\t\014\2108\2203\320\026,\250A\330\014\022\220*\230A\320\0353\2601\340\010\017\210q\220\005\220_\240A";
|
|
4083
4086
|
static const char __pyx_k_ASyncGeneratorFunction___reduce[] = "_ASyncGeneratorFunction.__reduce_cython__";
|
|
4084
4087
|
static const char __pyx_k_ASyncGeneratorFunction___setsta[] = "_ASyncGeneratorFunction.__setstate_cython__";
|
|
4085
4088
|
static const char __pyx_k_ASyncGeneratorFunction__weaksel[] = "_ASyncGeneratorFunction__weakself_ptr";
|
|
@@ -7303,8 +7306,8 @@ static PyObject *__pyx_pf_6a_sync_4iter_14_ASyncIterable_4__repr__(struct __pyx_
|
|
|
7303
7306
|
__Pyx_TraceLine(233,14,0,__PYX_ERR(0, 233, __pyx_L1_error))
|
|
7304
7307
|
__pyx_t_1 = __Pyx_GetAttr3(((PyObject *)__pyx_v_self), __pyx_mstate_global->__pyx_n_u_wrapped_2, Py_None); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 233, __pyx_L1_error)
|
|
7305
7308
|
__Pyx_GOTREF(__pyx_t_1);
|
|
7306
|
-
__pyx_v_wrapped = __pyx_t_1;
|
|
7307
7309
|
__Pyx_INCREF(__pyx_t_1);
|
|
7310
|
+
__pyx_v_wrapped = __pyx_t_1;
|
|
7308
7311
|
__pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely((__pyx_t_5 < 0))) __PYX_ERR(0, 233, __pyx_L1_error)
|
|
7309
7312
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
7310
7313
|
if (__pyx_t_5) {
|
|
@@ -19834,8 +19837,8 @@ static void __pyx_f_6a_sync_4iter__init_subclass(PyObject *__pyx_v_cls, CYTHON_U
|
|
|
19834
19837
|
}
|
|
19835
19838
|
__pyx_t_2 = __Pyx_PyTuple_GET_ITEM(__pyx_v_args, 0);
|
|
19836
19839
|
__Pyx_INCREF(__pyx_t_2);
|
|
19837
|
-
__Pyx_DECREF_SET(__pyx_v_type_argument, __pyx_t_2);
|
|
19838
19840
|
__Pyx_INCREF(__pyx_t_2);
|
|
19841
|
+
__Pyx_DECREF_SET(__pyx_v_type_argument, __pyx_t_2);
|
|
19839
19842
|
__pyx_t_7 = __pyx_t_2;
|
|
19840
19843
|
__Pyx_INCREF(__pyx_t_7);
|
|
19841
19844
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
@@ -20577,10 +20580,10 @@ static void __pyx_f_6a_sync_4iter__init_subclass(PyObject *__pyx_v_cls, CYTHON_U
|
|
|
20577
20580
|
__Pyx_TraceLine(930,186,0,__PYX_ERR(0, 930, __pyx_L26_error))
|
|
20578
20581
|
__pyx_t_8 = __Pyx_GetAttr3(__pyx_v_cls, __pyx_8genexpr3__pyx_v_attr_name, Py_None); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 930, __pyx_L26_error)
|
|
20579
20582
|
__Pyx_GOTREF(__pyx_t_8);
|
|
20583
|
+
__Pyx_INCREF(__pyx_t_8);
|
|
20580
20584
|
__Pyx_XGOTREF(__pyx_cur_scope->__pyx_v_attr_value);
|
|
20581
20585
|
__Pyx_XDECREF_SET(__pyx_cur_scope->__pyx_v_attr_value, __pyx_t_8);
|
|
20582
20586
|
__Pyx_GIVEREF(__pyx_t_8);
|
|
20583
|
-
__Pyx_INCREF(__pyx_t_8);
|
|
20584
20587
|
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_8); if (unlikely((__pyx_t_6 < 0))) __PYX_ERR(0, 930, __pyx_L26_error)
|
|
20585
20588
|
__Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
|
|
20586
20589
|
if (__pyx_t_6) {
|
|
@@ -24684,40 +24687,40 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
24684
24687
|
/*--- Type import code ---*/
|
|
24685
24688
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
24686
24689
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24687
|
-
__pyx_mstate->__pyx_ptype_7cpython_4type_type =
|
|
24690
|
+
__pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_3(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
24688
24691
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
24689
|
-
sizeof(PyTypeObject),
|
|
24692
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyTypeObject),
|
|
24690
24693
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
24691
24694
|
0, 0,
|
|
24692
24695
|
#else
|
|
24693
|
-
sizeof(PyHeapTypeObject),
|
|
24696
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyHeapTypeObject),
|
|
24694
24697
|
#endif
|
|
24695
|
-
|
|
24698
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
24696
24699
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
24697
24700
|
__pyx_t_1 = PyImport_ImportModule("a_sync.async_property.cached"); if (unlikely(!__pyx_t_1)) __PYX_ERR(4, 6, __pyx_L1_error)
|
|
24698
24701
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24699
|
-
__pyx_mstate->__pyx_ptype_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState =
|
|
24702
|
+
__pyx_mstate->__pyx_ptype_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.async_property.cached", "AsyncCachedPropertyInstanceState",
|
|
24700
24703
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
24701
|
-
sizeof(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState),
|
|
24704
|
+
sizeof(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState),
|
|
24702
24705
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
24703
|
-
sizeof(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState),
|
|
24706
|
+
sizeof(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState),
|
|
24704
24707
|
#else
|
|
24705
|
-
sizeof(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState),
|
|
24708
|
+
sizeof(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState),
|
|
24706
24709
|
#endif
|
|
24707
|
-
|
|
24710
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState) __PYX_ERR(4, 6, __pyx_L1_error)
|
|
24708
24711
|
__pyx_vtabptr_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState = (struct __pyx_vtabstruct_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState*)__Pyx_GetVtable(__pyx_mstate->__pyx_ptype_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState); if (unlikely(!__pyx_vtabptr_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState)) __PYX_ERR(4, 6, __pyx_L1_error)
|
|
24709
24712
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
24710
24713
|
__pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (unlikely(!__pyx_t_1)) __PYX_ERR(5, 1, __pyx_L1_error)
|
|
24711
24714
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24712
|
-
__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe =
|
|
24715
|
+
__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.functools", "cached_property_unsafe",
|
|
24713
24716
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
24714
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
24717
|
+
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
24715
24718
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
24716
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
24719
|
+
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
24717
24720
|
#else
|
|
24718
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
24721
|
+
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
24719
24722
|
#endif
|
|
24720
|
-
|
|
24723
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe) __PYX_ERR(5, 1, __pyx_L1_error)
|
|
24721
24724
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
24722
24725
|
__Pyx_RefNannyFinishContext();
|
|
24723
24726
|
return 0;
|
|
@@ -24738,7 +24741,7 @@ static int __Pyx_modinit_variable_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
24738
24741
|
/*--- Variable import code ---*/
|
|
24739
24742
|
__pyx_t_1 = PyImport_ImportModule("a_sync.async_property.cached"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24740
24743
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24741
|
-
if (
|
|
24744
|
+
if (__Pyx_ImportVoidPtr_3_1_3(__pyx_t_1, "ASYNC_PROPERTY_ATTR", (void **)&__pyx_vp_6a_sync_14async_property_6cached_ASYNC_PROPERTY_ATTR, "PyObject *") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24742
24745
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
24743
24746
|
__Pyx_RefNannyFinishContext();
|
|
24744
24747
|
return 0;
|
|
@@ -24759,25 +24762,25 @@ static int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
24759
24762
|
/*--- Function import code ---*/
|
|
24760
24763
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync._helpers"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24761
24764
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24762
|
-
if (
|
|
24763
|
-
if (
|
|
24765
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "get_event_loop", (void (**)(void))&__pyx_f_6a_sync_6a_sync_8_helpers_get_event_loop, "PyObject *(int __pyx_skip_dispatch)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24766
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "_await", (void (**)(void))&__pyx_f_6a_sync_6a_sync_8_helpers__await, "PyObject *(PyObject *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24764
24767
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
24765
24768
|
__pyx_t_1 = PyImport_ImportModule("a_sync.asyncio.as_completed"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24766
24769
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24767
|
-
if (
|
|
24770
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "as_completed_mapping", (void (**)(void))&__pyx_f_6a_sync_7asyncio_12as_completed_as_completed_mapping, "PyObject *(PyObject *, unsigned int, int, int, int, PyObject *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24768
24771
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
24769
24772
|
__pyx_t_1 = PyImport_ImportModule("a_sync.asyncio.create_task"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24770
24773
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24771
|
-
if (
|
|
24772
|
-
if (
|
|
24774
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "ccreate_task_simple", (void (**)(void))&__pyx_f_6a_sync_7asyncio_11create_task_ccreate_task_simple, "PyObject *(PyObject *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24775
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "ccreate_task", (void (**)(void))&__pyx_f_6a_sync_7asyncio_11create_task_ccreate_task, "PyObject *(PyObject *, PyObject *, int, int)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24773
24776
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
24774
24777
|
__pyx_t_1 = PyImport_ImportModule("a_sync.asyncio.igather"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24775
24778
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24776
|
-
if (
|
|
24779
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "cigather", (void (**)(void))&__pyx_f_6a_sync_7asyncio_7igather_cigather, "PyObject *(PyObject *, struct __pyx_opt_args_6a_sync_7asyncio_7igather_cigather *__pyx_optional_args)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24777
24780
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
24778
24781
|
__pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24779
24782
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24780
|
-
if (
|
|
24783
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "update_wrapper", (void (**)(void))&__pyx_f_6a_sync_9functools_update_wrapper, "PyObject *(PyObject *, PyObject *, int __pyx_skip_dispatch)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
24781
24784
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
24782
24785
|
__Pyx_RefNannyFinishContext();
|
|
24783
24786
|
return 0;
|
|
@@ -25076,7 +25079,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
25076
25079
|
if (unlikely((__Pyx_modinit_variable_import_code(__pyx_mstate) < 0))) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25077
25080
|
if (unlikely((__Pyx_modinit_function_import_code(__pyx_mstate) < 0))) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25078
25081
|
/*--- Execution code ---*/
|
|
25079
|
-
__Pyx_TraceStartFunc("PyInit_iter", __pyx_f[0], 1,
|
|
25082
|
+
__Pyx_TraceStartFunc("PyInit_iter", __pyx_f[0], 1, 3, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
|
|
25080
25083
|
|
|
25081
25084
|
/* "cfunc.to_py":65
|
|
25082
25085
|
*
|
|
@@ -26173,7 +26176,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26173
26176
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26174
26177
|
* def __setstate_cython__(self, __pyx_state):
|
|
26175
26178
|
*/
|
|
26176
|
-
__Pyx_TraceLine(1,
|
|
26179
|
+
__Pyx_TraceLine(1,5,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
26177
26180
|
__pyx_t_4 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_28_AwaitableAsyncIterableMixin_14__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_AwaitableAsyncIterableMixin___r, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[13])); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26178
26181
|
__Pyx_GOTREF(__pyx_t_4);
|
|
26179
26182
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_4) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -26185,7 +26188,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26185
26188
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
26186
26189
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26187
26190
|
*/
|
|
26188
|
-
__Pyx_TraceLine(3,
|
|
26191
|
+
__Pyx_TraceLine(3,11,0,__PYX_ERR(1, 3, __pyx_L1_error))
|
|
26189
26192
|
__pyx_t_4 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_28_AwaitableAsyncIterableMixin_16__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_AwaitableAsyncIterableMixin___s, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[14])); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
26190
26193
|
__Pyx_GOTREF(__pyx_t_4);
|
|
26191
26194
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_4) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
@@ -26222,7 +26225,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26222
26225
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26223
26226
|
* def __setstate_cython__(self, __pyx_state):
|
|
26224
26227
|
*/
|
|
26225
|
-
__Pyx_TraceLine(1,
|
|
26228
|
+
__Pyx_TraceLine(1,2,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
26226
26229
|
__pyx_t_4 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_14_ASyncIterable_11__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncIterable___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[20])); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26227
26230
|
__Pyx_GOTREF(__pyx_t_4);
|
|
26228
26231
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_4) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -26234,7 +26237,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26234
26237
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
26235
26238
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26236
26239
|
*/
|
|
26237
|
-
__Pyx_TraceLine(3,
|
|
26240
|
+
__Pyx_TraceLine(3,9,0,__PYX_ERR(1, 3, __pyx_L1_error))
|
|
26238
26241
|
__pyx_t_4 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_14_ASyncIterable_13__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncIterable___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[21])); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
26239
26242
|
__Pyx_GOTREF(__pyx_t_4);
|
|
26240
26243
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_4) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
@@ -26421,7 +26424,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26421
26424
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26422
26425
|
* def __setstate_cython__(self, __pyx_state):
|
|
26423
26426
|
*/
|
|
26424
|
-
__Pyx_TraceLine(1,
|
|
26427
|
+
__Pyx_TraceLine(1,6,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
26425
26428
|
__pyx_t_8 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_14_ASyncIterator_17__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncIterator___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[33])); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26426
26429
|
__Pyx_GOTREF(__pyx_t_8);
|
|
26427
26430
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_8) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -26433,7 +26436,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26433
26436
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
26434
26437
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26435
26438
|
*/
|
|
26436
|
-
__Pyx_TraceLine(3,
|
|
26439
|
+
__Pyx_TraceLine(3,13,0,__PYX_ERR(1, 3, __pyx_L1_error))
|
|
26437
26440
|
__pyx_t_8 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_14_ASyncIterator_19__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncIterator___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[34])); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
26438
26441
|
__Pyx_GOTREF(__pyx_t_8);
|
|
26439
26442
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_8) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
@@ -26558,7 +26561,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26558
26561
|
* raise TypeError, "self._ASyncGeneratorFunction__weakself_ptr cannot be converted to a Python object for pickling"
|
|
26559
26562
|
* def __setstate_cython__(self, __pyx_state):
|
|
26560
26563
|
*/
|
|
26561
|
-
__Pyx_TraceLine(1,
|
|
26564
|
+
__Pyx_TraceLine(1,4,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
26562
26565
|
__pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_23_ASyncGeneratorFunction_9__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncGeneratorFunction___reduce, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[50])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26563
26566
|
__Pyx_GOTREF(__pyx_t_3);
|
|
26564
26567
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_3) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -26570,7 +26573,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26570
26573
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
26571
26574
|
* raise TypeError, "self._ASyncGeneratorFunction__weakself_ptr cannot be converted to a Python object for pickling"
|
|
26572
26575
|
*/
|
|
26573
|
-
__Pyx_TraceLine(3,
|
|
26576
|
+
__Pyx_TraceLine(3,10,0,__PYX_ERR(1, 3, __pyx_L1_error))
|
|
26574
26577
|
__pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_23_ASyncGeneratorFunction_11__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncGeneratorFunction___setsta, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[51])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
26575
26578
|
__Pyx_GOTREF(__pyx_t_3);
|
|
26576
26579
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_3) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
@@ -26651,7 +26654,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26651
26654
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26652
26655
|
* def __setstate_cython__(self, __pyx_state):
|
|
26653
26656
|
*/
|
|
26654
|
-
__Pyx_TraceLine(1,
|
|
26657
|
+
__Pyx_TraceLine(1,7,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
26655
26658
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_10_ASyncView_3__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncView___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[57])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26656
26659
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26657
26660
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_5) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -26663,7 +26666,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26663
26666
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
26664
26667
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26665
26668
|
*/
|
|
26666
|
-
__Pyx_TraceLine(3,
|
|
26669
|
+
__Pyx_TraceLine(3,15,0,__PYX_ERR(1, 3, __pyx_L1_error))
|
|
26667
26670
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_10_ASyncView_5__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncView___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[58])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
26668
26671
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26669
26672
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_5) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
@@ -26693,7 +26696,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26693
26696
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26694
26697
|
* def __setstate_cython__(self, __pyx_state):
|
|
26695
26698
|
*/
|
|
26696
|
-
__Pyx_TraceLine(1,
|
|
26699
|
+
__Pyx_TraceLine(1,1,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
26697
26700
|
__pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_12_ASyncFilter_9__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncFilter___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[62])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26698
26701
|
__Pyx_GOTREF(__pyx_t_3);
|
|
26699
26702
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_3) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -26705,7 +26708,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26705
26708
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
26706
26709
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26707
26710
|
*/
|
|
26708
|
-
__Pyx_TraceLine(3,
|
|
26711
|
+
__Pyx_TraceLine(3,12,0,__PYX_ERR(1, 3, __pyx_L1_error))
|
|
26709
26712
|
__pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_12_ASyncFilter_11__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncFilter___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[63])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
26710
26713
|
__Pyx_GOTREF(__pyx_t_3);
|
|
26711
26714
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_3) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
@@ -26823,7 +26826,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26823
26826
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26824
26827
|
* def __setstate_cython__(self, __pyx_state):
|
|
26825
26828
|
*/
|
|
26826
|
-
__Pyx_TraceLine(1,
|
|
26829
|
+
__Pyx_TraceLine(1,0,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
26827
26830
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_12_ASyncSorter_14__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncSorter___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[76])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26828
26831
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26829
26832
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_5) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -26835,7 +26838,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
26835
26838
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
26836
26839
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
26837
26840
|
*/
|
|
26838
|
-
__Pyx_TraceLine(3,
|
|
26841
|
+
__Pyx_TraceLine(3,14,0,__PYX_ERR(1, 3, __pyx_L1_error))
|
|
26839
26842
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_4iter_12_ASyncSorter_16__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncSorter___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_iter, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[77])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
26840
26843
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26841
26844
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_5) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
@@ -27013,12 +27016,12 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
27013
27016
|
* import asyncio
|
|
27014
27017
|
* import copy
|
|
27015
27018
|
*/
|
|
27016
|
-
__Pyx_TraceLine(1,
|
|
27019
|
+
__Pyx_TraceLine(1,3,0,__PYX_ERR(0, 1, __pyx_L1_error))
|
|
27017
27020
|
__pyx_t_4 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27018
27021
|
__Pyx_GOTREF(__pyx_t_4);
|
|
27019
27022
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_4) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27020
27023
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
27021
|
-
__Pyx_TraceReturnValue(Py_None,
|
|
27024
|
+
__Pyx_TraceReturnValue(Py_None, 3, 0, __PYX_ERR(0, 1, __pyx_L1_error));
|
|
27022
27025
|
__Pyx_PyMonitoring_ExitScope(0);
|
|
27023
27026
|
|
|
27024
27027
|
/*--- Wrapped vars code ---*/
|
|
@@ -27032,7 +27035,7 @@ __Pyx_RefNannySetupContext("PyInit_iter", 0);
|
|
|
27032
27035
|
__Pyx_XDECREF(__pyx_t_8);
|
|
27033
27036
|
__Pyx_XDECREF(__pyx_t_9);
|
|
27034
27037
|
__Pyx_TraceException(__pyx_lineno, 0, 0);
|
|
27035
|
-
__Pyx_TraceExceptionUnwind(
|
|
27038
|
+
__Pyx_TraceExceptionUnwind(3, 0);
|
|
27036
27039
|
if (__pyx_m) {
|
|
27037
27040
|
if (__pyx_mstate->__pyx_d && stringtab_initialized) {
|
|
27038
27041
|
__Pyx_AddTraceback("init a_sync.iter", __pyx_clineno, __pyx_lineno, __pyx_filename);
|
|
@@ -29481,6 +29484,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
29481
29484
|
changed = 1;
|
|
29482
29485
|
}
|
|
29483
29486
|
#endif // CYTHON_METH_FASTCALL
|
|
29487
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
29484
29488
|
else if (strcmp(memb->name, "__module__") == 0) {
|
|
29485
29489
|
PyObject *descr;
|
|
29486
29490
|
assert(memb->type == T_OBJECT);
|
|
@@ -29495,11 +29499,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
29495
29499
|
}
|
|
29496
29500
|
changed = 1;
|
|
29497
29501
|
}
|
|
29502
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
29498
29503
|
}
|
|
29499
29504
|
memb++;
|
|
29500
29505
|
}
|
|
29501
29506
|
}
|
|
29502
29507
|
#endif // !CYTHON_COMPILING_IN_LIMITED_API
|
|
29508
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
29503
29509
|
slot = spec->slots;
|
|
29504
29510
|
while (slot && slot->slot && slot->slot != Py_tp_getset)
|
|
29505
29511
|
slot++;
|
|
@@ -29531,6 +29537,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
29531
29537
|
++getset;
|
|
29532
29538
|
}
|
|
29533
29539
|
}
|
|
29540
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
29534
29541
|
if (changed)
|
|
29535
29542
|
PyType_Modified(type);
|
|
29536
29543
|
#endif // PY_VERSION_HEX > 0x030900B1
|
|
@@ -29663,7 +29670,7 @@ bad:
|
|
|
29663
29670
|
}
|
|
29664
29671
|
|
|
29665
29672
|
/* CommonTypesMetaclass */
|
|
29666
|
-
PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
29673
|
+
static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
29667
29674
|
return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
|
|
29668
29675
|
}
|
|
29669
29676
|
static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
|
|
@@ -31513,7 +31520,7 @@ static CYTHON_INLINE PyObject *__Pyx_PyIter_Next_Plain(PyObject *iterator) {
|
|
|
31513
31520
|
}
|
|
31514
31521
|
|
|
31515
31522
|
/* PyObjectCallMethod1 */
|
|
31516
|
-
#if !(CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000)
|
|
31523
|
+
#if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)))
|
|
31517
31524
|
static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
|
|
31518
31525
|
PyObject *result = __Pyx_PyObject_CallOneArg(method, arg);
|
|
31519
31526
|
Py_DECREF(method);
|
|
@@ -31521,7 +31528,7 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
|
|
|
31521
31528
|
}
|
|
31522
31529
|
#endif
|
|
31523
31530
|
static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) {
|
|
31524
|
-
#if CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000
|
|
31531
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
31525
31532
|
PyObject *args[2] = {obj, arg};
|
|
31526
31533
|
(void) __Pyx_PyObject_GetMethod;
|
|
31527
31534
|
(void) __Pyx_PyObject_CallOneArg;
|
|
@@ -33322,6 +33329,13 @@ bad:
|
|
|
33322
33329
|
|
|
33323
33330
|
/* PyObjectCallMethod0 */
|
|
33324
33331
|
static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
|
|
33332
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
33333
|
+
PyObject *args[1] = {obj};
|
|
33334
|
+
(void) __Pyx_PyObject_GetMethod;
|
|
33335
|
+
(void) __Pyx_PyObject_CallOneArg;
|
|
33336
|
+
(void) __Pyx_PyObject_CallNoArg;
|
|
33337
|
+
return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
|
|
33338
|
+
#else
|
|
33325
33339
|
PyObject *method = NULL, *result = NULL;
|
|
33326
33340
|
int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
|
|
33327
33341
|
if (likely(is_method)) {
|
|
@@ -33334,6 +33348,7 @@ bad:
|
|
|
33334
33348
|
Py_DECREF(method);
|
|
33335
33349
|
bad:
|
|
33336
33350
|
return result;
|
|
33351
|
+
#endif
|
|
33337
33352
|
}
|
|
33338
33353
|
|
|
33339
33354
|
/* RaiseNoneIterError */
|
|
@@ -34030,10 +34045,10 @@ __PYX_GOOD:
|
|
|
34030
34045
|
}
|
|
34031
34046
|
|
|
34032
34047
|
/* TypeImport */
|
|
34033
|
-
#ifndef
|
|
34034
|
-
#define
|
|
34035
|
-
static PyTypeObject *
|
|
34036
|
-
size_t size, size_t alignment, enum
|
|
34048
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_3
|
|
34049
|
+
#define __PYX_HAVE_RT_ImportType_3_1_3
|
|
34050
|
+
static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module_name, const char *class_name,
|
|
34051
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_3 check_size)
|
|
34037
34052
|
{
|
|
34038
34053
|
PyObject *result = 0;
|
|
34039
34054
|
Py_ssize_t basicsize;
|
|
@@ -34089,7 +34104,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
34089
34104
|
module_name, class_name, size, basicsize+itemsize);
|
|
34090
34105
|
goto bad;
|
|
34091
34106
|
}
|
|
34092
|
-
if (check_size ==
|
|
34107
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_3 &&
|
|
34093
34108
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
34094
34109
|
PyErr_Format(PyExc_ValueError,
|
|
34095
34110
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -34097,7 +34112,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
34097
34112
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
34098
34113
|
goto bad;
|
|
34099
34114
|
}
|
|
34100
|
-
else if (check_size ==
|
|
34115
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_3 && (size_t)basicsize > size) {
|
|
34101
34116
|
if (PyErr_WarnFormat(NULL, 0,
|
|
34102
34117
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
34103
34118
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -36696,9 +36711,9 @@ static PyObject *__Pyx_Generator_GetInlinedResult(PyObject *self) {
|
|
|
36696
36711
|
}
|
|
36697
36712
|
|
|
36698
36713
|
/* VoidPtrImport */
|
|
36699
|
-
#ifndef
|
|
36700
|
-
#define
|
|
36701
|
-
static int
|
|
36714
|
+
#ifndef __PYX_HAVE_RT_ImportVoidPtr_3_1_3
|
|
36715
|
+
#define __PYX_HAVE_RT_ImportVoidPtr_3_1_3
|
|
36716
|
+
static int __Pyx_ImportVoidPtr_3_1_3(PyObject *module, const char *name, void **p, const char *sig) {
|
|
36702
36717
|
PyObject *d = 0;
|
|
36703
36718
|
PyObject *cobj = 0;
|
|
36704
36719
|
d = PyObject_GetAttrString(module, "__pyx_capi__");
|
|
@@ -36736,9 +36751,9 @@ bad:
|
|
|
36736
36751
|
#endif
|
|
36737
36752
|
|
|
36738
36753
|
/* FunctionImport */
|
|
36739
|
-
#ifndef
|
|
36740
|
-
#define
|
|
36741
|
-
static int
|
|
36754
|
+
#ifndef __PYX_HAVE_RT_ImportFunction_3_1_3
|
|
36755
|
+
#define __PYX_HAVE_RT_ImportFunction_3_1_3
|
|
36756
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
|
|
36742
36757
|
PyObject *d = 0;
|
|
36743
36758
|
PyObject *cobj = 0;
|
|
36744
36759
|
union {
|
a_sync/iter.cp312-win32.pyd
CHANGED
|
Binary file
|