ez-a-sync 0.32.26__cp311-cp311-musllinux_1_2_i686.whl → 0.32.27__cp311-cp311-musllinux_1_2_i686.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.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/_descriptor.c +64 -49
- a_sync/a_sync/_descriptor.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/_flags.c +13 -10
- a_sync/a_sync/_flags.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/_helpers.c +62 -47
- a_sync/a_sync/_helpers.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/_kwargs.c +33 -18
- a_sync/a_sync/_kwargs.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/abstract.c +18 -11
- a_sync/a_sync/abstract.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/base.c +168 -153
- a_sync/a_sync/base.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/flags.c +6 -3
- a_sync/a_sync/flags.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/function.c +81 -66
- a_sync/a_sync/function.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/method.c +123 -108
- a_sync/a_sync/method.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/modifiers/manager.c +46 -31
- a_sync/a_sync/modifiers/manager.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/property.c +82 -67
- a_sync/a_sync/property.cpython-311-i386-linux-musl.so +0 -0
- a_sync/async_property/cached.c +57 -42
- a_sync/async_property/cached.cpython-311-i386-linux-musl.so +0 -0
- a_sync/async_property/proxy.c +24 -9
- a_sync/async_property/proxy.cpython-311-i386-linux-musl.so +0 -0
- a_sync/asyncio/as_completed.c +21 -6
- a_sync/asyncio/as_completed.cpython-311-i386-linux-musl.so +0 -0
- a_sync/asyncio/create_task.c +23 -8
- a_sync/asyncio/create_task.cpython-311-i386-linux-musl.so +0 -0
- a_sync/asyncio/gather.c +30 -15
- a_sync/asyncio/gather.cpython-311-i386-linux-musl.so +0 -0
- a_sync/asyncio/igather.c +24 -9
- a_sync/asyncio/igather.cpython-311-i386-linux-musl.so +0 -0
- a_sync/asyncio/sleep.c +19 -4
- a_sync/asyncio/sleep.cpython-311-i386-linux-musl.so +0 -0
- a_sync/debugging.c +45 -30
- a_sync/debugging.cpython-311-i386-linux-musl.so +0 -0
- a_sync/exceptions.c +18 -11
- a_sync/exceptions.cpython-311-i386-linux-musl.so +0 -0
- a_sync/executor.py +44 -0
- a_sync/functools.c +24 -9
- a_sync/functools.cpython-311-i386-linux-musl.so +0 -0
- a_sync/iter.c +86 -71
- a_sync/iter.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/_debug.c +47 -32
- a_sync/primitives/_debug.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/_loggable.c +26 -11
- a_sync/primitives/_loggable.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/locks/counter.c +70 -55
- a_sync/primitives/locks/counter.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/locks/event.c +56 -40
- a_sync/primitives/locks/event.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/locks/prio_semaphore.c +82 -67
- a_sync/primitives/locks/prio_semaphore.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/locks/semaphore.c +72 -57
- a_sync/primitives/locks/semaphore.cpython-311-i386-linux-musl.so +0 -0
- a_sync/utils/repr.c +41 -26
- a_sync/utils/repr.cpython-311-i386-linux-musl.so +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
|
@@ -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
|
|
@@ -2696,22 +2699,22 @@ static void* __Pyx_GetVtable(PyTypeObject *type);
|
|
|
2696
2699
|
static int __Pyx_MergeVtables(PyTypeObject *type);
|
|
2697
2700
|
|
|
2698
2701
|
/* TypeImport.proto */
|
|
2699
|
-
#ifndef
|
|
2700
|
-
#define
|
|
2702
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_3
|
|
2703
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_3
|
|
2701
2704
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2702
2705
|
#include <stdalign.h>
|
|
2703
2706
|
#endif
|
|
2704
2707
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2705
|
-
#define
|
|
2708
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) alignof(s)
|
|
2706
2709
|
#else
|
|
2707
|
-
#define
|
|
2710
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) sizeof(void*)
|
|
2708
2711
|
#endif
|
|
2709
|
-
enum
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2712
|
+
enum __Pyx_ImportType_CheckSize_3_1_3 {
|
|
2713
|
+
__Pyx_ImportType_CheckSize_Error_3_1_3 = 0,
|
|
2714
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3 = 1,
|
|
2715
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3 = 2
|
|
2713
2716
|
};
|
|
2714
|
-
static PyTypeObject *
|
|
2717
|
+
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);
|
|
2715
2718
|
#endif
|
|
2716
2719
|
|
|
2717
2720
|
/* Import.proto */
|
|
@@ -2986,7 +2989,7 @@ static unsigned long __Pyx_get_runtime_version(void);
|
|
|
2986
2989
|
static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer);
|
|
2987
2990
|
|
|
2988
2991
|
/* FunctionImport.proto */
|
|
2989
|
-
static int
|
|
2992
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
|
|
2990
2993
|
|
|
2991
2994
|
/* MultiPhaseInitModuleState.proto */
|
|
2992
2995
|
#if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE
|
|
@@ -7392,15 +7395,15 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
7392
7395
|
/*--- Type import code ---*/
|
|
7393
7396
|
__pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 1, __pyx_L1_error)
|
|
7394
7397
|
__Pyx_GOTREF(__pyx_t_1);
|
|
7395
|
-
__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe =
|
|
7398
|
+
__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.functools", "cached_property_unsafe",
|
|
7396
7399
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
7397
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
7400
|
+
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),
|
|
7398
7401
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
7399
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
7402
|
+
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),
|
|
7400
7403
|
#else
|
|
7401
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
7404
|
+
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),
|
|
7402
7405
|
#endif
|
|
7403
|
-
|
|
7406
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe) __PYX_ERR(2, 1, __pyx_L1_error)
|
|
7404
7407
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
7405
7408
|
__Pyx_RefNannyFinishContext();
|
|
7406
7409
|
return 0;
|
|
@@ -7430,7 +7433,7 @@ static int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
7430
7433
|
/*--- Function import code ---*/
|
|
7431
7434
|
__pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
7432
7435
|
__Pyx_GOTREF(__pyx_t_1);
|
|
7433
|
-
if (
|
|
7436
|
+
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)
|
|
7434
7437
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
7435
7438
|
__Pyx_RefNannyFinishContext();
|
|
7436
7439
|
return 0;
|
|
@@ -10250,6 +10253,13 @@ try_unpack:
|
|
|
10250
10253
|
|
|
10251
10254
|
/* PyObjectCallMethod0 */
|
|
10252
10255
|
static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
|
|
10256
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
10257
|
+
PyObject *args[1] = {obj};
|
|
10258
|
+
(void) __Pyx_PyObject_GetMethod;
|
|
10259
|
+
(void) __Pyx_PyObject_CallOneArg;
|
|
10260
|
+
(void) __Pyx_PyObject_CallNoArg;
|
|
10261
|
+
return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
|
|
10262
|
+
#else
|
|
10253
10263
|
PyObject *method = NULL, *result = NULL;
|
|
10254
10264
|
int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
|
|
10255
10265
|
if (likely(is_method)) {
|
|
@@ -10262,6 +10272,7 @@ static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name
|
|
|
10262
10272
|
Py_DECREF(method);
|
|
10263
10273
|
bad:
|
|
10264
10274
|
return result;
|
|
10275
|
+
#endif
|
|
10265
10276
|
}
|
|
10266
10277
|
|
|
10267
10278
|
/* RaiseNeedMoreValuesToUnpack */
|
|
@@ -10996,6 +11007,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
10996
11007
|
changed = 1;
|
|
10997
11008
|
}
|
|
10998
11009
|
#endif // CYTHON_METH_FASTCALL
|
|
11010
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
10999
11011
|
else if (strcmp(memb->name, "__module__") == 0) {
|
|
11000
11012
|
PyObject *descr;
|
|
11001
11013
|
assert(memb->type == T_OBJECT);
|
|
@@ -11010,11 +11022,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
11010
11022
|
}
|
|
11011
11023
|
changed = 1;
|
|
11012
11024
|
}
|
|
11025
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
11013
11026
|
}
|
|
11014
11027
|
memb++;
|
|
11015
11028
|
}
|
|
11016
11029
|
}
|
|
11017
11030
|
#endif // !CYTHON_COMPILING_IN_LIMITED_API
|
|
11031
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
11018
11032
|
slot = spec->slots;
|
|
11019
11033
|
while (slot && slot->slot && slot->slot != Py_tp_getset)
|
|
11020
11034
|
slot++;
|
|
@@ -11046,6 +11060,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
11046
11060
|
++getset;
|
|
11047
11061
|
}
|
|
11048
11062
|
}
|
|
11063
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
11049
11064
|
if (changed)
|
|
11050
11065
|
PyType_Modified(type);
|
|
11051
11066
|
#endif // PY_VERSION_HEX > 0x030900B1
|
|
@@ -11178,7 +11193,7 @@ bad:
|
|
|
11178
11193
|
}
|
|
11179
11194
|
|
|
11180
11195
|
/* CommonTypesMetaclass */
|
|
11181
|
-
PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
11196
|
+
static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
11182
11197
|
return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
|
|
11183
11198
|
}
|
|
11184
11199
|
static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
|
|
@@ -12731,10 +12746,10 @@ other_failure:
|
|
|
12731
12746
|
}
|
|
12732
12747
|
|
|
12733
12748
|
/* TypeImport */
|
|
12734
|
-
#ifndef
|
|
12735
|
-
#define
|
|
12736
|
-
static PyTypeObject *
|
|
12737
|
-
size_t size, size_t alignment, enum
|
|
12749
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_3
|
|
12750
|
+
#define __PYX_HAVE_RT_ImportType_3_1_3
|
|
12751
|
+
static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module_name, const char *class_name,
|
|
12752
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_3 check_size)
|
|
12738
12753
|
{
|
|
12739
12754
|
PyObject *result = 0;
|
|
12740
12755
|
Py_ssize_t basicsize;
|
|
@@ -12790,7 +12805,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
12790
12805
|
module_name, class_name, size, basicsize+itemsize);
|
|
12791
12806
|
goto bad;
|
|
12792
12807
|
}
|
|
12793
|
-
if (check_size ==
|
|
12808
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_3 &&
|
|
12794
12809
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
12795
12810
|
PyErr_Format(PyExc_ValueError,
|
|
12796
12811
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -12798,7 +12813,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
12798
12813
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
12799
12814
|
goto bad;
|
|
12800
12815
|
}
|
|
12801
|
-
else if (check_size ==
|
|
12816
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_3 && (size_t)basicsize > size) {
|
|
12802
12817
|
if (PyErr_WarnFormat(NULL, 0,
|
|
12803
12818
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
12804
12819
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -14328,7 +14343,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyOb
|
|
|
14328
14343
|
}
|
|
14329
14344
|
|
|
14330
14345
|
/* PyObjectCallMethod1 */
|
|
14331
|
-
#if !(CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000)
|
|
14346
|
+
#if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)))
|
|
14332
14347
|
static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
|
|
14333
14348
|
PyObject *result = __Pyx_PyObject_CallOneArg(method, arg);
|
|
14334
14349
|
Py_DECREF(method);
|
|
@@ -14336,7 +14351,7 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
|
|
|
14336
14351
|
}
|
|
14337
14352
|
#endif
|
|
14338
14353
|
static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) {
|
|
14339
|
-
#if CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000
|
|
14354
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
14340
14355
|
PyObject *args[2] = {obj, arg};
|
|
14341
14356
|
(void) __Pyx_PyObject_GetMethod;
|
|
14342
14357
|
(void) __Pyx_PyObject_CallOneArg;
|
|
@@ -15505,9 +15520,9 @@ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt
|
|
|
15505
15520
|
}
|
|
15506
15521
|
|
|
15507
15522
|
/* FunctionImport */
|
|
15508
|
-
#ifndef
|
|
15509
|
-
#define
|
|
15510
|
-
static int
|
|
15523
|
+
#ifndef __PYX_HAVE_RT_ImportFunction_3_1_3
|
|
15524
|
+
#define __PYX_HAVE_RT_ImportFunction_3_1_3
|
|
15525
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
|
|
15511
15526
|
PyObject *d = 0;
|
|
15512
15527
|
PyObject *cobj = 0;
|
|
15513
15528
|
union {
|
|
Binary file
|
a_sync/a_sync/property.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
|
|
@@ -3089,22 +3092,22 @@ static int __Pyx_validate_bases_tuple(const char *type_name, Py_ssize_t dictoffs
|
|
|
3089
3092
|
CYTHON_UNUSED static int __Pyx_PyType_Ready(PyTypeObject *t);
|
|
3090
3093
|
|
|
3091
3094
|
/* TypeImport.proto */
|
|
3092
|
-
#ifndef
|
|
3093
|
-
#define
|
|
3095
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_3
|
|
3096
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_3
|
|
3094
3097
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
3095
3098
|
#include <stdalign.h>
|
|
3096
3099
|
#endif
|
|
3097
3100
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
3098
|
-
#define
|
|
3101
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) alignof(s)
|
|
3099
3102
|
#else
|
|
3100
|
-
#define
|
|
3103
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) sizeof(void*)
|
|
3101
3104
|
#endif
|
|
3102
|
-
enum
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3105
|
+
enum __Pyx_ImportType_CheckSize_3_1_3 {
|
|
3106
|
+
__Pyx_ImportType_CheckSize_Error_3_1_3 = 0,
|
|
3107
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3 = 1,
|
|
3108
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3 = 2
|
|
3106
3109
|
};
|
|
3107
|
-
static PyTypeObject *
|
|
3110
|
+
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);
|
|
3108
3111
|
#endif
|
|
3109
3112
|
|
|
3110
3113
|
/* GetVTable.proto */
|
|
@@ -3248,10 +3251,10 @@ static unsigned long __Pyx_get_runtime_version(void);
|
|
|
3248
3251
|
static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer);
|
|
3249
3252
|
|
|
3250
3253
|
/* VoidPtrImport.proto */
|
|
3251
|
-
static int
|
|
3254
|
+
static int __Pyx_ImportVoidPtr_3_1_3(PyObject *module, const char *name, void **p, const char *sig);
|
|
3252
3255
|
|
|
3253
3256
|
/* FunctionImport.proto */
|
|
3254
|
-
static int
|
|
3257
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
|
|
3255
3258
|
|
|
3256
3259
|
/* MultiPhaseInitModuleState.proto */
|
|
3257
3260
|
#if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE
|
|
@@ -14989,77 +14992,77 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
14989
14992
|
/*--- Type import code ---*/
|
|
14990
14993
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync.modifiers.manager"); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
14991
14994
|
__Pyx_GOTREF(__pyx_t_1);
|
|
14992
|
-
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_9modifiers_7manager_ModifierManager =
|
|
14995
|
+
__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",
|
|
14993
14996
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
14994
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
14997
|
+
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),
|
|
14995
14998
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
14996
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
14999
|
+
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),
|
|
14997
15000
|
#else
|
|
14998
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
15001
|
+
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),
|
|
14999
15002
|
#endif
|
|
15000
|
-
|
|
15003
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_9modifiers_7manager_ModifierManager) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
15001
15004
|
__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(1, 1, __pyx_L1_error)
|
|
15002
15005
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15003
15006
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync.function"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 3, __pyx_L1_error)
|
|
15004
15007
|
__Pyx_GOTREF(__pyx_t_1);
|
|
15005
|
-
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ModifiedMixin =
|
|
15008
|
+
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ModifiedMixin = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.a_sync.function", "_ModifiedMixin",
|
|
15006
15009
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
15007
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin),
|
|
15010
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin),
|
|
15008
15011
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
15009
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin),
|
|
15012
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin),
|
|
15010
15013
|
#else
|
|
15011
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin),
|
|
15014
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin),
|
|
15012
15015
|
#endif
|
|
15013
|
-
|
|
15016
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ModifiedMixin) __PYX_ERR(2, 3, __pyx_L1_error)
|
|
15014
15017
|
__pyx_vtabptr_6a_sync_6a_sync_8function__ModifiedMixin = (struct __pyx_vtabstruct_6a_sync_6a_sync_8function__ModifiedMixin*)__Pyx_GetVtable(__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ModifiedMixin); if (unlikely(!__pyx_vtabptr_6a_sync_6a_sync_8function__ModifiedMixin)) __PYX_ERR(2, 3, __pyx_L1_error)
|
|
15015
|
-
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction =
|
|
15018
|
+
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.a_sync.function", "_ASyncFunction",
|
|
15016
15019
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
15017
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction),
|
|
15020
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction),
|
|
15018
15021
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
15019
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction),
|
|
15022
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction),
|
|
15020
15023
|
#else
|
|
15021
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction),
|
|
15024
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction),
|
|
15022
15025
|
#endif
|
|
15023
|
-
|
|
15026
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction) __PYX_ERR(2, 13, __pyx_L1_error)
|
|
15024
15027
|
__pyx_vtabptr_6a_sync_6a_sync_8function__ASyncFunction = (struct __pyx_vtabstruct_6a_sync_6a_sync_8function__ASyncFunction*)__Pyx_GetVtable(__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction); if (unlikely(!__pyx_vtabptr_6a_sync_6a_sync_8function__ASyncFunction)) __PYX_ERR(2, 13, __pyx_L1_error)
|
|
15025
15028
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15026
15029
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync.method"); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 2, __pyx_L1_error)
|
|
15027
15030
|
__Pyx_GOTREF(__pyx_t_1);
|
|
15028
|
-
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_6method__ASyncBoundMethod =
|
|
15031
|
+
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_6method__ASyncBoundMethod = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.a_sync.method", "_ASyncBoundMethod",
|
|
15029
15032
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
15030
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_6method__ASyncBoundMethod),
|
|
15033
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_6method__ASyncBoundMethod), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_6method__ASyncBoundMethod),
|
|
15031
15034
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
15032
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_6method__ASyncBoundMethod),
|
|
15035
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_6method__ASyncBoundMethod), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_6method__ASyncBoundMethod),
|
|
15033
15036
|
#else
|
|
15034
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_6method__ASyncBoundMethod),
|
|
15037
|
+
sizeof(struct __pyx_obj_6a_sync_6a_sync_6method__ASyncBoundMethod), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(struct __pyx_obj_6a_sync_6a_sync_6method__ASyncBoundMethod),
|
|
15035
15038
|
#endif
|
|
15036
|
-
|
|
15039
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_6method__ASyncBoundMethod) __PYX_ERR(3, 2, __pyx_L1_error)
|
|
15037
15040
|
__pyx_vtabptr_6a_sync_6a_sync_6method__ASyncBoundMethod = (struct __pyx_vtabstruct_6a_sync_6a_sync_6method__ASyncBoundMethod*)__Pyx_GetVtable(__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_6method__ASyncBoundMethod); if (unlikely(!__pyx_vtabptr_6a_sync_6a_sync_6method__ASyncBoundMethod)) __PYX_ERR(3, 2, __pyx_L1_error)
|
|
15038
15041
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15039
15042
|
__pyx_t_1 = PyImport_ImportModule("a_sync.async_property.cached"); if (unlikely(!__pyx_t_1)) __PYX_ERR(4, 6, __pyx_L1_error)
|
|
15040
15043
|
__Pyx_GOTREF(__pyx_t_1);
|
|
15041
|
-
__pyx_mstate->__pyx_ptype_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState =
|
|
15044
|
+
__pyx_mstate->__pyx_ptype_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.async_property.cached", "AsyncCachedPropertyInstanceState",
|
|
15042
15045
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
15043
|
-
sizeof(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState),
|
|
15046
|
+
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),
|
|
15044
15047
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
15045
|
-
sizeof(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState),
|
|
15048
|
+
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),
|
|
15046
15049
|
#else
|
|
15047
|
-
sizeof(struct __pyx_obj_6a_sync_14async_property_6cached_AsyncCachedPropertyInstanceState),
|
|
15050
|
+
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),
|
|
15048
15051
|
#endif
|
|
15049
|
-
|
|
15052
|
+
__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)
|
|
15050
15053
|
__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)
|
|
15051
15054
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15052
15055
|
__pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (unlikely(!__pyx_t_1)) __PYX_ERR(5, 1, __pyx_L1_error)
|
|
15053
15056
|
__Pyx_GOTREF(__pyx_t_1);
|
|
15054
|
-
__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe =
|
|
15057
|
+
__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.functools", "cached_property_unsafe",
|
|
15055
15058
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
15056
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
15059
|
+
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),
|
|
15057
15060
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
15058
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
15061
|
+
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),
|
|
15059
15062
|
#else
|
|
15060
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
15063
|
+
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),
|
|
15061
15064
|
#endif
|
|
15062
|
-
|
|
15065
|
+
__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)
|
|
15063
15066
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15064
15067
|
__Pyx_RefNannyFinishContext();
|
|
15065
15068
|
return 0;
|
|
@@ -15080,7 +15083,7 @@ static int __Pyx_modinit_variable_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
15080
15083
|
/*--- Variable import code ---*/
|
|
15081
15084
|
__pyx_t_1 = PyImport_ImportModule("a_sync.async_property.cached"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
15082
15085
|
__Pyx_GOTREF(__pyx_t_1);
|
|
15083
|
-
if (
|
|
15086
|
+
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)
|
|
15084
15087
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15085
15088
|
__Pyx_RefNannyFinishContext();
|
|
15086
15089
|
return 0;
|
|
@@ -15101,25 +15104,25 @@ static int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
15101
15104
|
/*--- Function import code ---*/
|
|
15102
15105
|
__pyx_t_1 = PyImport_ImportModule("a_sync._smart"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
15103
15106
|
__Pyx_GOTREF(__pyx_t_1);
|
|
15104
|
-
if (
|
|
15107
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "shield", (void (**)(void))&__pyx_f_6a_sync_6_smart_shield, "PyObject *(PyObject *, int __pyx_skip_dispatch)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
15105
15108
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15106
15109
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync._helpers"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
15107
15110
|
__Pyx_GOTREF(__pyx_t_1);
|
|
15108
|
-
if (
|
|
15109
|
-
if (
|
|
15111
|
+
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)
|
|
15112
|
+
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)
|
|
15110
15113
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15111
15114
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync.method"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
15112
15115
|
__Pyx_GOTREF(__pyx_t_1);
|
|
15113
|
-
if (
|
|
15114
|
-
if (
|
|
15116
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "_is_a_sync_instance", (void (**)(void))&__pyx_f_6a_sync_6a_sync_6method__is_a_sync_instance, "int (PyObject *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
15117
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "_update_cache_timer", (void (**)(void))&__pyx_f_6a_sync_6a_sync_6method__update_cache_timer, "void (PyObject *, PyObject *, struct __pyx_obj_6a_sync_6a_sync_6method__ASyncBoundMethod *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
15115
15118
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15116
15119
|
__pyx_t_1 = PyImport_ImportModule("a_sync.asyncio.create_task"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
15117
15120
|
__Pyx_GOTREF(__pyx_t_1);
|
|
15118
|
-
if (
|
|
15121
|
+
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)
|
|
15119
15122
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15120
15123
|
__pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
15121
15124
|
__Pyx_GOTREF(__pyx_t_1);
|
|
15122
|
-
if (
|
|
15125
|
+
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)
|
|
15123
15126
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
15124
15127
|
__Pyx_RefNannyFinishContext();
|
|
15125
15128
|
return 0;
|
|
@@ -20932,6 +20935,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
20932
20935
|
changed = 1;
|
|
20933
20936
|
}
|
|
20934
20937
|
#endif // CYTHON_METH_FASTCALL
|
|
20938
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
20935
20939
|
else if (strcmp(memb->name, "__module__") == 0) {
|
|
20936
20940
|
PyObject *descr;
|
|
20937
20941
|
assert(memb->type == T_OBJECT);
|
|
@@ -20946,11 +20950,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
20946
20950
|
}
|
|
20947
20951
|
changed = 1;
|
|
20948
20952
|
}
|
|
20953
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
20949
20954
|
}
|
|
20950
20955
|
memb++;
|
|
20951
20956
|
}
|
|
20952
20957
|
}
|
|
20953
20958
|
#endif // !CYTHON_COMPILING_IN_LIMITED_API
|
|
20959
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
20954
20960
|
slot = spec->slots;
|
|
20955
20961
|
while (slot && slot->slot && slot->slot != Py_tp_getset)
|
|
20956
20962
|
slot++;
|
|
@@ -20982,6 +20988,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
20982
20988
|
++getset;
|
|
20983
20989
|
}
|
|
20984
20990
|
}
|
|
20991
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
20985
20992
|
if (changed)
|
|
20986
20993
|
PyType_Modified(type);
|
|
20987
20994
|
#endif // PY_VERSION_HEX > 0x030900B1
|
|
@@ -21114,7 +21121,7 @@ bad:
|
|
|
21114
21121
|
}
|
|
21115
21122
|
|
|
21116
21123
|
/* CommonTypesMetaclass */
|
|
21117
|
-
PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
21124
|
+
static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
21118
21125
|
return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
|
|
21119
21126
|
}
|
|
21120
21127
|
static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
|
|
@@ -21538,7 +21545,7 @@ try_unpack:
|
|
|
21538
21545
|
}
|
|
21539
21546
|
|
|
21540
21547
|
/* PyObjectCallMethod1 */
|
|
21541
|
-
#if !(CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000)
|
|
21548
|
+
#if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)))
|
|
21542
21549
|
static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
|
|
21543
21550
|
PyObject *result = __Pyx_PyObject_CallOneArg(method, arg);
|
|
21544
21551
|
Py_DECREF(method);
|
|
@@ -21546,7 +21553,7 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
|
|
|
21546
21553
|
}
|
|
21547
21554
|
#endif
|
|
21548
21555
|
static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) {
|
|
21549
|
-
#if CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000
|
|
21556
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
21550
21557
|
PyObject *args[2] = {obj, arg};
|
|
21551
21558
|
(void) __Pyx_PyObject_GetMethod;
|
|
21552
21559
|
(void) __Pyx_PyObject_CallOneArg;
|
|
@@ -24700,6 +24707,13 @@ bad:
|
|
|
24700
24707
|
|
|
24701
24708
|
/* PyObjectCallMethod0 */
|
|
24702
24709
|
static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
|
|
24710
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
24711
|
+
PyObject *args[1] = {obj};
|
|
24712
|
+
(void) __Pyx_PyObject_GetMethod;
|
|
24713
|
+
(void) __Pyx_PyObject_CallOneArg;
|
|
24714
|
+
(void) __Pyx_PyObject_CallNoArg;
|
|
24715
|
+
return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
|
|
24716
|
+
#else
|
|
24703
24717
|
PyObject *method = NULL, *result = NULL;
|
|
24704
24718
|
int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
|
|
24705
24719
|
if (likely(is_method)) {
|
|
@@ -24712,6 +24726,7 @@ bad:
|
|
|
24712
24726
|
Py_DECREF(method);
|
|
24713
24727
|
bad:
|
|
24714
24728
|
return result;
|
|
24729
|
+
#endif
|
|
24715
24730
|
}
|
|
24716
24731
|
|
|
24717
24732
|
/* ValidateBasesTuple */
|
|
@@ -24885,10 +24900,10 @@ static int __Pyx_PyType_Ready(PyTypeObject *t) {
|
|
|
24885
24900
|
}
|
|
24886
24901
|
|
|
24887
24902
|
/* TypeImport */
|
|
24888
|
-
#ifndef
|
|
24889
|
-
#define
|
|
24890
|
-
static PyTypeObject *
|
|
24891
|
-
size_t size, size_t alignment, enum
|
|
24903
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_3
|
|
24904
|
+
#define __PYX_HAVE_RT_ImportType_3_1_3
|
|
24905
|
+
static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module_name, const char *class_name,
|
|
24906
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_3 check_size)
|
|
24892
24907
|
{
|
|
24893
24908
|
PyObject *result = 0;
|
|
24894
24909
|
Py_ssize_t basicsize;
|
|
@@ -24944,7 +24959,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
24944
24959
|
module_name, class_name, size, basicsize+itemsize);
|
|
24945
24960
|
goto bad;
|
|
24946
24961
|
}
|
|
24947
|
-
if (check_size ==
|
|
24962
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_3 &&
|
|
24948
24963
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
24949
24964
|
PyErr_Format(PyExc_ValueError,
|
|
24950
24965
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -24952,7 +24967,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
24952
24967
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
24953
24968
|
goto bad;
|
|
24954
24969
|
}
|
|
24955
|
-
else if (check_size ==
|
|
24970
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_3 && (size_t)basicsize > size) {
|
|
24956
24971
|
if (PyErr_WarnFormat(NULL, 0,
|
|
24957
24972
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
24958
24973
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -26447,9 +26462,9 @@ static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObj
|
|
|
26447
26462
|
}
|
|
26448
26463
|
|
|
26449
26464
|
/* VoidPtrImport */
|
|
26450
|
-
#ifndef
|
|
26451
|
-
#define
|
|
26452
|
-
static int
|
|
26465
|
+
#ifndef __PYX_HAVE_RT_ImportVoidPtr_3_1_3
|
|
26466
|
+
#define __PYX_HAVE_RT_ImportVoidPtr_3_1_3
|
|
26467
|
+
static int __Pyx_ImportVoidPtr_3_1_3(PyObject *module, const char *name, void **p, const char *sig) {
|
|
26453
26468
|
PyObject *d = 0;
|
|
26454
26469
|
PyObject *cobj = 0;
|
|
26455
26470
|
d = PyObject_GetAttrString(module, "__pyx_capi__");
|
|
@@ -26487,9 +26502,9 @@ bad:
|
|
|
26487
26502
|
#endif
|
|
26488
26503
|
|
|
26489
26504
|
/* FunctionImport */
|
|
26490
|
-
#ifndef
|
|
26491
|
-
#define
|
|
26492
|
-
static int
|
|
26505
|
+
#ifndef __PYX_HAVE_RT_ImportFunction_3_1_3
|
|
26506
|
+
#define __PYX_HAVE_RT_ImportFunction_3_1_3
|
|
26507
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
|
|
26493
26508
|
PyObject *d = 0;
|
|
26494
26509
|
PyObject *cobj = 0;
|
|
26495
26510
|
union {
|
|
Binary file
|