ez-a-sync 0.32.26__cp39-cp39-win32.whl → 0.32.27__cp39-cp39-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 +58 -44
- a_sync/_smart.cp39-win32.pyd +0 -0
- a_sync/a_sync/_descriptor.c +69 -54
- a_sync/a_sync/_descriptor.cp39-win32.pyd +0 -0
- a_sync/a_sync/_flags.c +13 -10
- a_sync/a_sync/_flags.cp39-win32.pyd +0 -0
- a_sync/a_sync/_helpers.c +62 -47
- a_sync/a_sync/_helpers.cp39-win32.pyd +0 -0
- a_sync/a_sync/_kwargs.c +33 -18
- a_sync/a_sync/_kwargs.cp39-win32.pyd +0 -0
- a_sync/a_sync/abstract.c +18 -11
- a_sync/a_sync/abstract.cp39-win32.pyd +0 -0
- a_sync/a_sync/base.c +177 -163
- a_sync/a_sync/base.cp39-win32.pyd +0 -0
- a_sync/a_sync/flags.c +6 -3
- a_sync/a_sync/flags.cp39-win32.pyd +0 -0
- a_sync/a_sync/function.c +89 -75
- a_sync/a_sync/function.cp39-win32.pyd +0 -0
- a_sync/a_sync/method.c +131 -117
- a_sync/a_sync/method.cp39-win32.pyd +0 -0
- a_sync/a_sync/modifiers/manager.c +55 -41
- a_sync/a_sync/modifiers/manager.cp39-win32.pyd +0 -0
- a_sync/a_sync/property.c +82 -67
- a_sync/a_sync/property.cp39-win32.pyd +0 -0
- a_sync/async_property/cached.c +52 -37
- a_sync/async_property/cached.cp39-win32.pyd +0 -0
- a_sync/async_property/proxy.c +25 -10
- a_sync/async_property/proxy.cp39-win32.pyd +0 -0
- a_sync/asyncio/as_completed.c +21 -6
- a_sync/asyncio/as_completed.cp39-win32.pyd +0 -0
- a_sync/asyncio/create_task.c +32 -18
- a_sync/asyncio/create_task.cp39-win32.pyd +0 -0
- a_sync/asyncio/gather.c +30 -15
- a_sync/asyncio/gather.cp39-win32.pyd +0 -0
- a_sync/asyncio/igather.c +33 -19
- a_sync/asyncio/igather.cp39-win32.pyd +0 -0
- a_sync/asyncio/sleep.c +19 -4
- a_sync/asyncio/sleep.cp39-win32.pyd +0 -0
- a_sync/debugging.c +54 -40
- a_sync/debugging.cp39-win32.pyd +0 -0
- a_sync/exceptions.c +18 -11
- a_sync/exceptions.cp39-win32.pyd +0 -0
- a_sync/executor.py +44 -0
- a_sync/functools.c +24 -9
- a_sync/functools.cp39-win32.pyd +0 -0
- a_sync/iter.c +96 -82
- a_sync/iter.cp39-win32.pyd +0 -0
- a_sync/primitives/_debug.c +49 -34
- a_sync/primitives/_debug.cp39-win32.pyd +0 -0
- a_sync/primitives/_loggable.c +25 -10
- a_sync/primitives/_loggable.cp39-win32.pyd +0 -0
- a_sync/primitives/locks/counter.c +79 -65
- a_sync/primitives/locks/counter.cp39-win32.pyd +0 -0
- a_sync/primitives/locks/event.c +70 -55
- a_sync/primitives/locks/event.cp39-win32.pyd +0 -0
- a_sync/primitives/locks/prio_semaphore.c +90 -76
- a_sync/primitives/locks/prio_semaphore.cp39-win32.pyd +0 -0
- a_sync/primitives/locks/semaphore.c +74 -60
- a_sync/primitives/locks/semaphore.cp39-win32.pyd +0 -0
- a_sync/utils/repr.c +50 -36
- a_sync/utils/repr.cp39-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
|
Binary file
|
a_sync/a_sync/flags.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
|
{
|
|
@@ -29,8 +29,8 @@ END: Cython Metadata */
|
|
|
29
29
|
#elif PY_VERSION_HEX < 0x03080000
|
|
30
30
|
#error Cython requires Python 3.8+.
|
|
31
31
|
#else
|
|
32
|
-
#define __PYX_ABI_VERSION "
|
|
33
|
-
#define CYTHON_HEX_VERSION
|
|
32
|
+
#define __PYX_ABI_VERSION "3_1_3"
|
|
33
|
+
#define CYTHON_HEX_VERSION 0x030103F0
|
|
34
34
|
#define CYTHON_FUTURE_DIVISION 1
|
|
35
35
|
/* CModulePreamble */
|
|
36
36
|
#include <stddef.h>
|
|
@@ -393,6 +393,9 @@ END: Cython Metadata */
|
|
|
393
393
|
enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
|
|
394
394
|
#endif
|
|
395
395
|
#endif
|
|
396
|
+
#ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
|
|
397
|
+
#define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
|
|
398
|
+
#endif
|
|
396
399
|
#ifndef __has_attribute
|
|
397
400
|
#define __has_attribute(x) 0
|
|
398
401
|
#endif
|
|
Binary file
|
a_sync/a_sync/function.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
|
{
|
|
@@ -30,8 +30,8 @@ END: Cython Metadata */
|
|
|
30
30
|
#elif PY_VERSION_HEX < 0x03080000
|
|
31
31
|
#error Cython requires Python 3.8+.
|
|
32
32
|
#else
|
|
33
|
-
#define __PYX_ABI_VERSION "
|
|
34
|
-
#define CYTHON_HEX_VERSION
|
|
33
|
+
#define __PYX_ABI_VERSION "3_1_3"
|
|
34
|
+
#define CYTHON_HEX_VERSION 0x030103F0
|
|
35
35
|
#define CYTHON_FUTURE_DIVISION 1
|
|
36
36
|
/* CModulePreamble */
|
|
37
37
|
#include <stddef.h>
|
|
@@ -394,6 +394,9 @@ END: Cython Metadata */
|
|
|
394
394
|
enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
|
|
395
395
|
#endif
|
|
396
396
|
#endif
|
|
397
|
+
#ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
|
|
398
|
+
#define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
|
|
399
|
+
#endif
|
|
397
400
|
#ifndef __has_attribute
|
|
398
401
|
#define __has_attribute(x) 0
|
|
399
402
|
#endif
|
|
@@ -3320,22 +3323,22 @@ static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k);
|
|
|
3320
3323
|
static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
3321
3324
|
|
|
3322
3325
|
/* TypeImport.proto */
|
|
3323
|
-
#ifndef
|
|
3324
|
-
#define
|
|
3326
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_3
|
|
3327
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_3
|
|
3325
3328
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
3326
3329
|
#include <stdalign.h>
|
|
3327
3330
|
#endif
|
|
3328
3331
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
3329
|
-
#define
|
|
3332
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) alignof(s)
|
|
3330
3333
|
#else
|
|
3331
|
-
#define
|
|
3334
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) sizeof(void*)
|
|
3332
3335
|
#endif
|
|
3333
|
-
enum
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3336
|
+
enum __Pyx_ImportType_CheckSize_3_1_3 {
|
|
3337
|
+
__Pyx_ImportType_CheckSize_Error_3_1_3 = 0,
|
|
3338
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3 = 1,
|
|
3339
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3 = 2
|
|
3337
3340
|
};
|
|
3338
|
-
static PyTypeObject *
|
|
3341
|
+
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);
|
|
3339
3342
|
#endif
|
|
3340
3343
|
|
|
3341
3344
|
/* ImportDottedModule.proto */
|
|
@@ -3490,10 +3493,10 @@ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt
|
|
|
3490
3493
|
static int __Pyx_ExportFunction(const char *name, void (*f)(void), const char *sig);
|
|
3491
3494
|
|
|
3492
3495
|
/* VoidPtrImport.proto */
|
|
3493
|
-
static int
|
|
3496
|
+
static int __Pyx_ImportVoidPtr_3_1_3(PyObject *module, const char *name, void **p, const char *sig);
|
|
3494
3497
|
|
|
3495
3498
|
/* FunctionImport.proto */
|
|
3496
|
-
static int
|
|
3499
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
|
|
3497
3500
|
|
|
3498
3501
|
/* MultiPhaseInitModuleState.proto */
|
|
3499
3502
|
#if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE
|
|
@@ -3900,8 +3903,8 @@ static const char __pyx_k_pyx_unpickle__ASyncFunction[] = "__pyx_unpickle__ASync
|
|
|
3900
3903
|
static const char __pyx_k_pyx_unpickle__ModifiedMixin[] = "__pyx_unpickle__ModifiedMixin";
|
|
3901
3904
|
static const char __pyx_k_ASyncBoundMethodAsyncDefault[] = "ASyncBoundMethodAsyncDefault";
|
|
3902
3905
|
static const char __pyx_k_A_iq_d_9K1_avQ_4y_1_2_t1_8_A[] = "\200A\340\014\r\330\010\030\230\001\340\t\n\330\010\026\220i\230q\240\006\240d\250/\3209K\3101\330\010\026\220a\220v\230Q\330\010\013\2104\210y\230\003\2301\330\014\020\220\013\2302\230[\250\004\320,?\270t\3001\340\014\020\220\001\330\020\022\220/\240\024\320%8\270\004\270A";
|
|
3903
|
-
static const char __pyx_k_hk_A_1_g_g_i_i_j_7_0_1B_PQ_1[] = "\200\001\360\006\000\005\010\200
|
|
3904
|
-
static const char __pyx_k_hk_A_1_r_r_t_t_u_7_0_1B_PQ_1[] = "\200\001\360\006\000\005\010\200
|
|
3906
|
+
static const char __pyx_k_hk_A_1_g_g_i_i_j_7_0_1B_PQ_1[] = "\200\001\360\006\000\005\010\200\177\220h\230k\250\033\260A\330\010\r\210^\2301\330\010\016\320\016!\360\000\000\"g\006\360\000\000g\006i\006\360\000\000i\006j\006\330\004\023\220>\240\030\250\021\250!\330\004\007\200|\2207\230!\330\0100\260\001\3201B\300.\320PQ\330\004\013\2101";
|
|
3907
|
+
static const char __pyx_k_hk_A_1_r_r_t_t_u_7_0_1B_PQ_1[] = "\200\001\360\006\000\005\010\200\177\220h\230k\250\033\260A\330\010\r\210^\2301\330\010\016\320\016!\360\000\000\"r\002\360\000\000r\002t\002\360\000\000t\002u\002\330\004\023\220>\240\030\250\021\250!\330\004\007\200|\2207\230!\330\0100\260\001\3201B\300.\320PQ\330\004\013\2101";
|
|
3905
3908
|
static const char __pyx_k_ASyncFunction___reduce_cython[] = "_ASyncFunction.__reduce_cython__";
|
|
3906
3909
|
static const char __pyx_k_ASyncFunction_is_sync_default[] = "_ASyncFunction.is_sync_default";
|
|
3907
3910
|
static const char __pyx_k_AsyncCachedPropertyDescriptor[] = "AsyncCachedPropertyDescriptor";
|
|
@@ -3923,7 +3926,7 @@ static const char __pyx_k_Immxxyy_J_J_h_h_s_s_t_t_x_x_D_D[] = "\200\001\330\004\
|
|
|
3923
3926
|
static const char __pyx_k_Input_is_not_callable_Unable_to[] = "Input is not callable. Unable to decorate ";
|
|
3924
3927
|
static const char __pyx_k_ModifiedMixin___setstate_cython[] = "_ModifiedMixin.__setstate_cython__";
|
|
3925
3928
|
static const char __pyx_k_Q_4_1_83a_AXT_1_S_1HD_AXT_1_1HD[] = "\320\004\035\320\035-\250Q\360\032\000\t\034\2304\230|\2501\330\010\013\2108\2203\220a\330\014\023\320\023,\250A\250X\260T\270\032\3001\330\r\025\220S\230\001\330\014\023\320\023+\2501\250H\260D\270\n\300!\330\r \240\001\240\021\330\014\023\320\023,\250A\250X\260T\270\032\3001\340\014\023\320\023+\2501\250H\260D\270\n\300!";
|
|
3926
|
-
static const char __pyx_k_T_Gt_Y_G1F_a_vWA_q_t_2_c_E_eejj[] = "\200\001\360\010\000\005\016\210T\320\021)\250\024\320-G\300t\310>\320Y]\320]^\330\004\014\210G\2201\220F\230,\240a\330\004\007\200v\210W\220A\330\010\022\220!\330\010\027\220q\340\010\027\220t\320\0332\260'\270\025\270c\300\024\320E^\320^e\320ej\320jm\320mq\320q~\360\000\000
|
|
3929
|
+
static const char __pyx_k_T_Gt_Y_G1F_a_vWA_q_t_2_c_E_eejj[] = "\200\001\360\010\000\005\016\210T\320\021)\250\024\320-G\300t\310>\320Y]\320]^\330\004\014\210G\2201\220F\230,\240a\330\004\007\200v\210W\220A\330\010\022\220!\330\010\027\220q\340\010\027\220t\320\0332\260'\270\025\270c\300\024\320E^\320^e\320ej\320jm\320mq\320q~\360\000\000\177\001F\002\360\000\000F\002K\002\360\000\000K\002N\002\360\000\000N\002R\002\360\000\000R\002]\002\360\000\000]\002d\002\360\000\000d\002e\002\330\004\007\200q\330\010\017\320\017/\250t\2601\260G\270;\300g\310Q\340\010\017\320\017/\250t\2601\260G\270;\300a";
|
|
3927
3930
|
static const char __pyx_k_T_T1TTXXuuy_z_W_W_y_y_F_F_J_J_f[] = "\200\001\360\010\000\005\016\210T\320\021-\250T\3201T\320TX\320Xu\320uy\360\000\000z\001W\002\360\000\000W\002[\002\360\000\000[\002y\002\360\000\000y\002}\002\360\000\000}\002\\\003\360\000\000\\\003`\003\360\000\000`\003F\004\360\000\000F\004J\004\360\000\000J\004f\004\360\000\000f\004j\004\360\000\000j\004B\005\360\000\000B\005F\005\360\000\000F\005`\005\360\000\000`\005d\005\360\000\000d\005r\005\360\000\000r\005v\005\360\000\000v\005|\005\360\000\000|\005@\006\360\000\000@\006A\006\330\004\014\210G\2201\220F\230,\240a\330\004\007\200v\210W\220A\330\010\022\220!\330\010\027\220q\340\010\027\220t\320\0337\260w\270e\3003\300d\320Jf\320fm\320mr\320ru\320uy\360\000\000z\001W\002\360\000\000W\002^\002\360\000\000^\002c\002\360\000\000c\002f\002\360\000\000f\002j\002\360\000\000j\002E\003\360\000\000E\003L\003\360\000\000L\003Q\003\360\000\000Q\003T\003\360\000\000T\003X\003\360\000\000X\003o\003\360\000\000o\003v\003\360\000\000v\003{\003\360\000\000{\003~\003\360\000\000~\003B\004\360\000\000B\004[\004\360\000\000[\004b\004\360\000\000b\004g\004\360\000\000g\004j\004\360\000\000j\004n\004\360\000\000n\004{\004\360\000\000{\004B\005\360\000\000B\005G\005\360\000\000G\005J\005\360\000\000J\005N\005\360\000\000N\005S\005\360\000\000S\005Z\005\360\000\000Z\005_\005\360\000\000_\005b\005\360\000\000b\005f\005\360\000\000f\005q\005\360\000\000q\005x\005\360\000\000x\005y\005\330\004\007\200q\330\010\017\320\017/\250t\2601\260G\270;\300g\310Q\340\010\017\320\017/\250t\2601\260G\270;\300a";
|
|
3928
3931
|
static const char __pyx_k_class_a_sync_a_sync_function_AS[] = ":class:`~a_sync.a_sync.function.ASyncFunction`, you can optionally pass either a `sync` or `asynchronous` kwarg with a boolean value.";
|
|
3929
3932
|
static const char __pyx_k_default_must_be_either_sync_asy[] = "'default' must be either 'sync', 'async', or None. You passed ";
|
|
@@ -24986,28 +24989,28 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
24986
24989
|
/*--- Type import code ---*/
|
|
24987
24990
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync.modifiers.manager"); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 1, __pyx_L1_error)
|
|
24988
24991
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24989
|
-
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_9modifiers_7manager_ModifierManager =
|
|
24992
|
+
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_9modifiers_7manager_ModifierManager = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.a_sync.modifiers.manager", "ModifierManager",
|
|
24990
24993
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
24991
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
24994
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
24992
24995
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
24993
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
24996
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
24994
24997
|
#else
|
|
24995
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
24998
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
24996
24999
|
#endif
|
|
24997
|
-
|
|
25000
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_9modifiers_7manager_ModifierManager) __PYX_ERR(3, 1, __pyx_L1_error)
|
|
24998
25001
|
__pyx_vtabptr_6a_sync_6a_sync_9modifiers_7manager_ModifierManager = (struct __pyx_vtabstruct_6a_sync_6a_sync_9modifiers_7manager_ModifierManager*)__Pyx_GetVtable(__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_9modifiers_7manager_ModifierManager); if (unlikely(!__pyx_vtabptr_6a_sync_6a_sync_9modifiers_7manager_ModifierManager)) __PYX_ERR(3, 1, __pyx_L1_error)
|
|
24999
25002
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25000
25003
|
__pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (unlikely(!__pyx_t_1)) __PYX_ERR(4, 1, __pyx_L1_error)
|
|
25001
25004
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25002
|
-
__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe =
|
|
25005
|
+
__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.functools", "cached_property_unsafe",
|
|
25003
25006
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25004
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
25007
|
+
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),
|
|
25005
25008
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25006
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
25009
|
+
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),
|
|
25007
25010
|
#else
|
|
25008
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
25011
|
+
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),
|
|
25009
25012
|
#endif
|
|
25010
|
-
|
|
25013
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe) __PYX_ERR(4, 1, __pyx_L1_error)
|
|
25011
25014
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25012
25015
|
__Pyx_RefNannyFinishContext();
|
|
25013
25016
|
return 0;
|
|
@@ -25028,9 +25031,9 @@ static int __Pyx_modinit_variable_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
25028
25031
|
/*--- Variable import code ---*/
|
|
25029
25032
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync.flags"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25030
25033
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25031
|
-
if (
|
|
25032
|
-
if (
|
|
25033
|
-
if (
|
|
25034
|
+
if (__Pyx_ImportVoidPtr_3_1_3(__pyx_t_1, "AFFIRMATIVE_FLAGS", (void **)&__pyx_vp_6a_sync_6a_sync_5flags_AFFIRMATIVE_FLAGS, "PyObject *") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25035
|
+
if (__Pyx_ImportVoidPtr_3_1_3(__pyx_t_1, "NEGATIVE_FLAGS", (void **)&__pyx_vp_6a_sync_6a_sync_5flags_NEGATIVE_FLAGS, "PyObject *") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25036
|
+
if (__Pyx_ImportVoidPtr_3_1_3(__pyx_t_1, "VIABLE_FLAGS", (void **)&__pyx_vp_6a_sync_6a_sync_5flags_VIABLE_FLAGS, "PyObject *") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25034
25037
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25035
25038
|
__Pyx_RefNannyFinishContext();
|
|
25036
25039
|
return 0;
|
|
@@ -25051,18 +25054,18 @@ static int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
25051
25054
|
/*--- Function import code ---*/
|
|
25052
25055
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync._kwargs"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25053
25056
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25054
|
-
if (
|
|
25055
|
-
if (
|
|
25057
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "get_flag_name", (void (**)(void))&__pyx_f_6a_sync_6a_sync_7_kwargs_get_flag_name, "PyObject *(PyObject *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25058
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "is_sync", (void (**)(void))&__pyx_f_6a_sync_6a_sync_7_kwargs_is_sync, "int (PyObject *, PyObject *, int)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25056
25059
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25057
25060
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync._helpers"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25058
25061
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25059
|
-
if (
|
|
25060
|
-
if (
|
|
25062
|
+
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)
|
|
25063
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "_asyncify", (void (**)(void))&__pyx_f_6a_sync_6a_sync_8_helpers__asyncify, "PyObject *(PyObject *, PyObject *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25061
25064
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25062
25065
|
__pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25063
25066
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25064
|
-
if (
|
|
25065
|
-
if (
|
|
25067
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "wraps", (void (**)(void))&__pyx_f_6a_sync_9functools_wraps, "PyObject *(PyObject *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25068
|
+
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)
|
|
25066
25069
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25067
25070
|
__Pyx_RefNannyFinishContext();
|
|
25068
25071
|
return 0;
|
|
@@ -25364,7 +25367,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
25364
25367
|
if (unlikely((__Pyx_modinit_variable_import_code(__pyx_mstate) < 0))) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25365
25368
|
if (unlikely((__Pyx_modinit_function_import_code(__pyx_mstate) < 0))) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25366
25369
|
/*--- Execution code ---*/
|
|
25367
|
-
__Pyx_TraceStartFunc("PyInit_function", __pyx_f[0], 1,
|
|
25370
|
+
__Pyx_TraceStartFunc("PyInit_function", __pyx_f[0], 1, 2, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
|
|
25368
25371
|
|
|
25369
25372
|
/* "cfunc.to_py":65
|
|
25370
25373
|
*
|
|
@@ -26059,7 +26062,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
26059
26062
|
* cdef tuple state
|
|
26060
26063
|
* cdef object _dict
|
|
26061
26064
|
*/
|
|
26062
|
-
__Pyx_TraceLine(1,
|
|
26065
|
+
__Pyx_TraceLine(1,5,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
26063
26066
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14_ModifiedMixin_1__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ModifiedMixin___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[10])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26064
26067
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26065
26068
|
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_8function__ModifiedMixin, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_5) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -26071,7 +26074,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
26071
26074
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
26072
26075
|
* __pyx_unpickle__ModifiedMixin__set_state(self, __pyx_state)
|
|
26073
26076
|
*/
|
|
26074
|
-
__Pyx_TraceLine(16,
|
|
26077
|
+
__Pyx_TraceLine(16,45,0,__PYX_ERR(1, 16, __pyx_L1_error))
|
|
26075
26078
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14_ModifiedMixin_3__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ModifiedMixin___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[11])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 16, __pyx_L1_error)
|
|
26076
26079
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26077
26080
|
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_8function__ModifiedMixin, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_5) < 0) __PYX_ERR(1, 16, __pyx_L1_error)
|
|
@@ -26783,7 +26786,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
26783
26786
|
* cdef tuple state
|
|
26784
26787
|
* cdef object _dict
|
|
26785
26788
|
*/
|
|
26786
|
-
__Pyx_TraceLine(1,
|
|
26789
|
+
__Pyx_TraceLine(1,1,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
26787
26790
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14_ASyncFunction_45__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncFunction___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[42])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26788
26791
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26789
26792
|
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_5) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -26795,7 +26798,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
26795
26798
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
26796
26799
|
* __pyx_unpickle__ASyncFunction__set_state(self, __pyx_state)
|
|
26797
26800
|
*/
|
|
26798
|
-
__Pyx_TraceLine(16,
|
|
26801
|
+
__Pyx_TraceLine(16,44,0,__PYX_ERR(1, 16, __pyx_L1_error))
|
|
26799
26802
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14_ASyncFunction_47__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncFunction___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[43])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 16, __pyx_L1_error)
|
|
26800
26803
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26801
26804
|
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_5) < 0) __PYX_ERR(1, 16, __pyx_L1_error)
|
|
@@ -27307,7 +27310,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
27307
27310
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
27308
27311
|
* def __setstate_cython__(self, __pyx_state):
|
|
27309
27312
|
*/
|
|
27310
|
-
__Pyx_TraceLine(1,
|
|
27313
|
+
__Pyx_TraceLine(1,3,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
27311
27314
|
__pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14ASyncDecorator_9__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncDecorator___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[56])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
27312
27315
|
__Pyx_GOTREF(__pyx_t_3);
|
|
27313
27316
|
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)
|
|
@@ -27319,7 +27322,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
27319
27322
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
27320
27323
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
27321
27324
|
*/
|
|
27322
|
-
__Pyx_TraceLine(3,
|
|
27325
|
+
__Pyx_TraceLine(3,11,0,__PYX_ERR(1, 3, __pyx_L1_error))
|
|
27323
27326
|
__pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14ASyncDecorator_11__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncDecorator___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[57])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
27324
27327
|
__Pyx_GOTREF(__pyx_t_3);
|
|
27325
27328
|
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)
|
|
@@ -28046,7 +28049,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
28046
28049
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
28047
28050
|
* def __setstate_cython__(self, __pyx_state):
|
|
28048
28051
|
*/
|
|
28049
|
-
__Pyx_TraceLine(1,
|
|
28052
|
+
__Pyx_TraceLine(1,4,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
28050
28053
|
__pyx_t_11 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_26ASyncDecoratorAsyncDefault_9__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncDecoratorAsyncDefault___red, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[82])); if (unlikely(!__pyx_t_11)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
28051
28054
|
__Pyx_GOTREF(__pyx_t_11);
|
|
28052
28055
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_11) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -28058,7 +28061,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
28058
28061
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
28059
28062
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
28060
28063
|
*/
|
|
28061
|
-
__Pyx_TraceLine(3,
|
|
28064
|
+
__Pyx_TraceLine(3,10,0,__PYX_ERR(1, 3, __pyx_L1_error))
|
|
28062
28065
|
__pyx_t_11 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_26ASyncDecoratorAsyncDefault_11__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncDecoratorAsyncDefault___set, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[83])); if (unlikely(!__pyx_t_11)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
28063
28066
|
__Pyx_GOTREF(__pyx_t_11);
|
|
28064
28067
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_11) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
@@ -28079,7 +28082,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
28079
28082
|
* cdef object __pyx_PickleError
|
|
28080
28083
|
* cdef object __pyx_result
|
|
28081
28084
|
*/
|
|
28082
|
-
__Pyx_TraceLine(1,
|
|
28085
|
+
__Pyx_TraceLine(1,0,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
28083
28086
|
__pyx_t_11 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_1__pyx_unpickle__ModifiedMixin, 0, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ModifiedMixin, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[85])); if (unlikely(!__pyx_t_11)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
28084
28087
|
__Pyx_GOTREF(__pyx_t_11);
|
|
28085
28088
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ModifiedMixin, __pyx_t_11) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -28100,7 +28103,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
28100
28103
|
* cdef object __pyx_PickleError
|
|
28101
28104
|
* cdef object __pyx_result
|
|
28102
28105
|
*/
|
|
28103
|
-
__Pyx_TraceLine(1,
|
|
28106
|
+
__Pyx_TraceLine(1,7,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
28104
28107
|
__pyx_t_11 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_3__pyx_unpickle__ASyncFunction, 0, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ASyncFunction, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[87])); if (unlikely(!__pyx_t_11)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
28105
28108
|
__Pyx_GOTREF(__pyx_t_11);
|
|
28106
28109
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ASyncFunction, __pyx_t_11) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -28121,12 +28124,12 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
28121
28124
|
* import inspect
|
|
28122
28125
|
* import sys
|
|
28123
28126
|
*/
|
|
28124
|
-
__Pyx_TraceLine(1,
|
|
28127
|
+
__Pyx_TraceLine(1,2,0,__PYX_ERR(0, 1, __pyx_L1_error))
|
|
28125
28128
|
__pyx_t_11 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
28126
28129
|
__Pyx_GOTREF(__pyx_t_11);
|
|
28127
28130
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_11) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
28128
28131
|
__Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
|
|
28129
|
-
__Pyx_TraceReturnValue(Py_None,
|
|
28132
|
+
__Pyx_TraceReturnValue(Py_None, 2, 0, __PYX_ERR(0, 1, __pyx_L1_error));
|
|
28130
28133
|
__Pyx_PyMonitoring_ExitScope(0);
|
|
28131
28134
|
|
|
28132
28135
|
/*--- Wrapped vars code ---*/
|
|
@@ -28142,7 +28145,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
28142
28145
|
__Pyx_XDECREF(__pyx_t_11);
|
|
28143
28146
|
__Pyx_XDECREF(__pyx_t_12);
|
|
28144
28147
|
__Pyx_TraceException(__pyx_lineno, 0, 0);
|
|
28145
|
-
__Pyx_TraceExceptionUnwind(
|
|
28148
|
+
__Pyx_TraceExceptionUnwind(2, 0);
|
|
28146
28149
|
if (__pyx_m) {
|
|
28147
28150
|
if (__pyx_mstate->__pyx_d && stringtab_initialized) {
|
|
28148
28151
|
__Pyx_AddTraceback("init a_sync.a_sync.function", __pyx_clineno, __pyx_lineno, __pyx_filename);
|
|
@@ -28573,16 +28576,15 @@ static int __Pyx_InitConstants(__pyx_mstatetype *__pyx_mstate) {
|
|
|
28573
28576
|
return -1;
|
|
28574
28577
|
}
|
|
28575
28578
|
/* #### Code section: init_codeobjects ### */
|
|
28576
|
-
|
|
28577
|
-
|
|
28578
|
-
|
|
28579
|
-
|
|
28580
|
-
|
|
28581
|
-
|
|
28582
|
-
|
|
28583
|
-
|
|
28584
|
-
|
|
28585
|
-
} __Pyx_PyCode_New_function_description;
|
|
28579
|
+
typedef struct {
|
|
28580
|
+
unsigned int argcount : 2;
|
|
28581
|
+
unsigned int num_posonly_args : 1;
|
|
28582
|
+
unsigned int num_kwonly_args : 2;
|
|
28583
|
+
unsigned int nlocals : 5;
|
|
28584
|
+
unsigned int flags : 10;
|
|
28585
|
+
unsigned int first_line : 11;
|
|
28586
|
+
unsigned int line_table_length : 13;
|
|
28587
|
+
} __Pyx_PyCode_New_function_description;
|
|
28586
28588
|
/* NewCodeObj.proto */
|
|
28587
28589
|
static PyObject* __Pyx_PyCode_New(
|
|
28588
28590
|
const __Pyx_PyCode_New_function_description descr,
|
|
@@ -30522,6 +30524,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
30522
30524
|
changed = 1;
|
|
30523
30525
|
}
|
|
30524
30526
|
#endif // CYTHON_METH_FASTCALL
|
|
30527
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
30525
30528
|
else if (strcmp(memb->name, "__module__") == 0) {
|
|
30526
30529
|
PyObject *descr;
|
|
30527
30530
|
assert(memb->type == T_OBJECT);
|
|
@@ -30536,11 +30539,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
30536
30539
|
}
|
|
30537
30540
|
changed = 1;
|
|
30538
30541
|
}
|
|
30542
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
30539
30543
|
}
|
|
30540
30544
|
memb++;
|
|
30541
30545
|
}
|
|
30542
30546
|
}
|
|
30543
30547
|
#endif // !CYTHON_COMPILING_IN_LIMITED_API
|
|
30548
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
30544
30549
|
slot = spec->slots;
|
|
30545
30550
|
while (slot && slot->slot && slot->slot != Py_tp_getset)
|
|
30546
30551
|
slot++;
|
|
@@ -30572,6 +30577,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
30572
30577
|
++getset;
|
|
30573
30578
|
}
|
|
30574
30579
|
}
|
|
30580
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
30575
30581
|
if (changed)
|
|
30576
30582
|
PyType_Modified(type);
|
|
30577
30583
|
#endif // PY_VERSION_HEX > 0x030900B1
|
|
@@ -30704,7 +30710,7 @@ bad:
|
|
|
30704
30710
|
}
|
|
30705
30711
|
|
|
30706
30712
|
/* CommonTypesMetaclass */
|
|
30707
|
-
PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
30713
|
+
static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
30708
30714
|
return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
|
|
30709
30715
|
}
|
|
30710
30716
|
static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
|
|
@@ -32838,6 +32844,13 @@ try_unpack:
|
|
|
32838
32844
|
|
|
32839
32845
|
/* PyObjectCallMethod0 */
|
|
32840
32846
|
static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
|
|
32847
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
32848
|
+
PyObject *args[1] = {obj};
|
|
32849
|
+
(void) __Pyx_PyObject_GetMethod;
|
|
32850
|
+
(void) __Pyx_PyObject_CallOneArg;
|
|
32851
|
+
(void) __Pyx_PyObject_CallNoArg;
|
|
32852
|
+
return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
|
|
32853
|
+
#else
|
|
32841
32854
|
PyObject *method = NULL, *result = NULL;
|
|
32842
32855
|
int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
|
|
32843
32856
|
if (likely(is_method)) {
|
|
@@ -32850,6 +32863,7 @@ static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name
|
|
|
32850
32863
|
Py_DECREF(method);
|
|
32851
32864
|
bad:
|
|
32852
32865
|
return result;
|
|
32866
|
+
#endif
|
|
32853
32867
|
}
|
|
32854
32868
|
|
|
32855
32869
|
/* RaiseNeedMoreValuesToUnpack */
|
|
@@ -33366,7 +33380,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyOb
|
|
|
33366
33380
|
}
|
|
33367
33381
|
|
|
33368
33382
|
/* PyObjectCallMethod1 */
|
|
33369
|
-
#if !(CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000)
|
|
33383
|
+
#if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)))
|
|
33370
33384
|
static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
|
|
33371
33385
|
PyObject *result = __Pyx_PyObject_CallOneArg(method, arg);
|
|
33372
33386
|
Py_DECREF(method);
|
|
@@ -33374,7 +33388,7 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
|
|
|
33374
33388
|
}
|
|
33375
33389
|
#endif
|
|
33376
33390
|
static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) {
|
|
33377
|
-
#if CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000
|
|
33391
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
33378
33392
|
PyObject *args[2] = {obj, arg};
|
|
33379
33393
|
(void) __Pyx_PyObject_GetMethod;
|
|
33380
33394
|
(void) __Pyx_PyObject_CallOneArg;
|
|
@@ -35473,10 +35487,10 @@ __PYX_GOOD:
|
|
|
35473
35487
|
}
|
|
35474
35488
|
|
|
35475
35489
|
/* TypeImport */
|
|
35476
|
-
#ifndef
|
|
35477
|
-
#define
|
|
35478
|
-
static PyTypeObject *
|
|
35479
|
-
size_t size, size_t alignment, enum
|
|
35490
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_3
|
|
35491
|
+
#define __PYX_HAVE_RT_ImportType_3_1_3
|
|
35492
|
+
static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module_name, const char *class_name,
|
|
35493
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_3 check_size)
|
|
35480
35494
|
{
|
|
35481
35495
|
PyObject *result = 0;
|
|
35482
35496
|
Py_ssize_t basicsize;
|
|
@@ -35532,7 +35546,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
35532
35546
|
module_name, class_name, size, basicsize+itemsize);
|
|
35533
35547
|
goto bad;
|
|
35534
35548
|
}
|
|
35535
|
-
if (check_size ==
|
|
35549
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_3 &&
|
|
35536
35550
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
35537
35551
|
PyErr_Format(PyExc_ValueError,
|
|
35538
35552
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -35540,7 +35554,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
35540
35554
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
35541
35555
|
goto bad;
|
|
35542
35556
|
}
|
|
35543
|
-
else if (check_size ==
|
|
35557
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_3 && (size_t)basicsize > size) {
|
|
35544
35558
|
if (PyErr_WarnFormat(NULL, 0,
|
|
35545
35559
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
35546
35560
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -37352,9 +37366,9 @@ bad:
|
|
|
37352
37366
|
}
|
|
37353
37367
|
|
|
37354
37368
|
/* VoidPtrImport */
|
|
37355
|
-
#ifndef
|
|
37356
|
-
#define
|
|
37357
|
-
static int
|
|
37369
|
+
#ifndef __PYX_HAVE_RT_ImportVoidPtr_3_1_3
|
|
37370
|
+
#define __PYX_HAVE_RT_ImportVoidPtr_3_1_3
|
|
37371
|
+
static int __Pyx_ImportVoidPtr_3_1_3(PyObject *module, const char *name, void **p, const char *sig) {
|
|
37358
37372
|
PyObject *d = 0;
|
|
37359
37373
|
PyObject *cobj = 0;
|
|
37360
37374
|
d = PyObject_GetAttrString(module, "__pyx_capi__");
|
|
@@ -37392,9 +37406,9 @@ bad:
|
|
|
37392
37406
|
#endif
|
|
37393
37407
|
|
|
37394
37408
|
/* FunctionImport */
|
|
37395
|
-
#ifndef
|
|
37396
|
-
#define
|
|
37397
|
-
static int
|
|
37409
|
+
#ifndef __PYX_HAVE_RT_ImportFunction_3_1_3
|
|
37410
|
+
#define __PYX_HAVE_RT_ImportFunction_3_1_3
|
|
37411
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
|
|
37398
37412
|
PyObject *d = 0;
|
|
37399
37413
|
PyObject *cobj = 0;
|
|
37400
37414
|
union {
|
|
Binary file
|