ez-a-sync 0.32.27__cp312-cp312-macosx_11_0_arm64.whl → 0.32.28__cp312-cp312-macosx_11_0_arm64.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 +41 -36
- a_sync/_smart.cpython-312-darwin.so +0 -0
- a_sync/a_sync/_descriptor.c +63 -58
- a_sync/a_sync/_descriptor.cpython-312-darwin.so +0 -0
- a_sync/a_sync/_flags.c +10 -10
- a_sync/a_sync/_flags.cpython-312-darwin.so +0 -0
- a_sync/a_sync/_helpers.c +57 -52
- a_sync/a_sync/_helpers.cpython-312-darwin.so +0 -0
- a_sync/a_sync/_kwargs.c +27 -22
- a_sync/a_sync/_kwargs.cpython-312-darwin.so +0 -0
- a_sync/a_sync/abstract.c +46 -23
- a_sync/a_sync/abstract.cpython-312-darwin.so +0 -0
- a_sync/a_sync/abstract.pyi +2 -2
- a_sync/a_sync/base.c +60 -51
- a_sync/a_sync/base.cpython-312-darwin.so +0 -0
- a_sync/a_sync/flags.c +10 -10
- a_sync/a_sync/flags.cpython-312-darwin.so +0 -0
- a_sync/a_sync/function.c +84 -70
- a_sync/a_sync/function.cpython-312-darwin.so +0 -0
- a_sync/a_sync/method.c +86 -69
- a_sync/a_sync/method.cpython-312-darwin.so +0 -0
- a_sync/a_sync/method.pyi +2 -1
- a_sync/a_sync/modifiers/manager.c +42 -37
- a_sync/a_sync/modifiers/manager.cpython-312-darwin.so +0 -0
- a_sync/a_sync/property.c +86 -75
- a_sync/a_sync/property.cpython-312-darwin.so +0 -0
- a_sync/async_property/cached.c +48 -43
- a_sync/async_property/cached.cpython-312-darwin.so +0 -0
- a_sync/async_property/proxy.c +16 -11
- a_sync/async_property/proxy.cpython-312-darwin.so +0 -0
- a_sync/asyncio/as_completed.c +15 -10
- a_sync/asyncio/as_completed.cpython-312-darwin.so +0 -0
- a_sync/asyncio/create_task.c +39 -16
- a_sync/asyncio/create_task.cpython-312-darwin.so +0 -0
- a_sync/asyncio/gather.c +24 -19
- a_sync/asyncio/gather.cpython-312-darwin.so +0 -0
- a_sync/asyncio/igather.c +26 -17
- a_sync/asyncio/igather.cpython-312-darwin.so +0 -0
- a_sync/asyncio/sleep.c +8 -3
- a_sync/asyncio/sleep.cpython-312-darwin.so +0 -0
- a_sync/debugging.c +34 -29
- a_sync/debugging.cpython-312-darwin.so +0 -0
- a_sync/exceptions.c +28 -19
- a_sync/exceptions.cpython-312-darwin.so +0 -0
- a_sync/functools.c +15 -10
- a_sync/functools.cpython-312-darwin.so +0 -0
- a_sync/iter.c +143 -88
- a_sync/iter.cpython-312-darwin.so +0 -0
- a_sync/primitives/_debug.c +43 -38
- a_sync/primitives/_debug.cpython-312-darwin.so +0 -0
- a_sync/primitives/_loggable.c +29 -18
- a_sync/primitives/_loggable.cpython-312-darwin.so +0 -0
- a_sync/primitives/locks/counter.c +75 -60
- a_sync/primitives/locks/counter.cpython-312-darwin.so +0 -0
- a_sync/primitives/locks/event.c +52 -47
- a_sync/primitives/locks/event.cpython-312-darwin.so +0 -0
- a_sync/primitives/locks/prio_semaphore.c +100 -75
- a_sync/primitives/locks/prio_semaphore.cpython-312-darwin.so +0 -0
- a_sync/primitives/locks/prio_semaphore.pyi +2 -2
- a_sync/primitives/locks/semaphore.c +75 -63
- a_sync/primitives/locks/semaphore.cpython-312-darwin.so +0 -0
- a_sync/primitives/locks/semaphore.pyi +10 -9
- a_sync/primitives/queue.py +5 -1
- a_sync/utils/repr.c +36 -31
- a_sync/utils/repr.cpython-312-darwin.so +0 -0
- {ez_a_sync-0.32.27.dist-info → ez_a_sync-0.32.28.dist-info}/METADATA +1 -1
- {ez_a_sync-0.32.27.dist-info → ez_a_sync-0.32.28.dist-info}/RECORD +70 -70
- {ez_a_sync-0.32.27.dist-info → ez_a_sync-0.32.28.dist-info}/WHEEL +0 -0
- {ez_a_sync-0.32.27.dist-info → ez_a_sync-0.32.28.dist-info}/licenses/LICENSE.txt +0 -0
- {ez_a_sync-0.32.27.dist-info → ez_a_sync-0.32.28.dist-info}/top_level.txt +0 -0
a_sync/primitives/locks/event.c
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.1.
|
|
1
|
+
/* Generated by Cython 3.1.4 */
|
|
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_4"
|
|
34
|
+
#define CYTHON_HEX_VERSION 0x030104F0
|
|
35
35
|
#define CYTHON_FUTURE_DIVISION 1
|
|
36
36
|
/* CModulePreamble */
|
|
37
37
|
#include <stddef.h>
|
|
@@ -2022,18 +2022,18 @@ static void __Pyx_RejectKeywords(const char* function_name, PyObject *kwds);
|
|
|
2022
2022
|
if (!__Pyx_PyThreadState_Current->tracing) {\
|
|
2023
2023
|
if (likely(__pyx_frame_code)) Py_INCREF(__pyx_frame_code);\
|
|
2024
2024
|
else __pyx_frame_code = (PyObject*) __Pyx_createFrameCodeObject(funcname, srcfile, firstlineno);\
|
|
2025
|
-
if (unlikely(!__pyx_frame_code))
|
|
2026
|
-
ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
|
|
2027
|
-
}
|
|
2025
|
+
if (unlikely(!__pyx_frame_code)) ret = -1;\
|
|
2026
|
+
else ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
|
|
2027
|
+
} else __pyx_frame_code = NULL;\
|
|
2028
2028
|
PyGILState_Release(state);\
|
|
2029
|
-
}
|
|
2029
|
+
} else __pyx_frame_code = NULL;\
|
|
2030
2030
|
} else {\
|
|
2031
2031
|
if (!__Pyx_PyThreadState_Current->tracing) {\
|
|
2032
2032
|
if (likely(__pyx_frame_code)) Py_INCREF(__pyx_frame_code);\
|
|
2033
2033
|
else __pyx_frame_code = (PyObject*) __Pyx_createFrameCodeObject(funcname, srcfile, firstlineno);\
|
|
2034
|
-
if (unlikely(!__pyx_frame_code))
|
|
2035
|
-
ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
|
|
2036
|
-
}
|
|
2034
|
+
if (unlikely(!__pyx_frame_code)) ret = -1;\
|
|
2035
|
+
else ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
|
|
2036
|
+
} else __pyx_frame_code = NULL;\
|
|
2037
2037
|
}\
|
|
2038
2038
|
if (unlikely(ret == -1)) goto_error;\
|
|
2039
2039
|
}
|
|
@@ -2851,22 +2851,22 @@ static int __Pyx_call_next_tp_traverse(PyObject* obj, visitproc v, void *a, trav
|
|
|
2851
2851
|
static void __Pyx_call_next_tp_clear(PyObject* obj, inquiry current_tp_clear);
|
|
2852
2852
|
|
|
2853
2853
|
/* TypeImport.proto */
|
|
2854
|
-
#ifndef
|
|
2855
|
-
#define
|
|
2854
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_4
|
|
2855
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_4
|
|
2856
2856
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2857
2857
|
#include <stdalign.h>
|
|
2858
2858
|
#endif
|
|
2859
2859
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2860
|
-
#define
|
|
2860
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) alignof(s)
|
|
2861
2861
|
#else
|
|
2862
|
-
#define
|
|
2862
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) sizeof(void*)
|
|
2863
2863
|
#endif
|
|
2864
|
-
enum
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2864
|
+
enum __Pyx_ImportType_CheckSize_3_1_4 {
|
|
2865
|
+
__Pyx_ImportType_CheckSize_Error_3_1_4 = 0,
|
|
2866
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4 = 1,
|
|
2867
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4 = 2
|
|
2868
2868
|
};
|
|
2869
|
-
static PyTypeObject *
|
|
2869
|
+
static PyTypeObject *__Pyx_ImportType_3_1_4(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_4 check_size);
|
|
2870
2870
|
#endif
|
|
2871
2871
|
|
|
2872
2872
|
/* GetVTable.proto */
|
|
@@ -7893,15 +7893,15 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
7893
7893
|
/*--- Type init code ---*/
|
|
7894
7894
|
__pyx_t_1 = PyImport_ImportModule("a_sync.primitives._debug"); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
7895
7895
|
__Pyx_GOTREF(__pyx_t_1);
|
|
7896
|
-
__pyx_mstate->__pyx_ptype_6a_sync_10primitives_6_debug__DebugDaemonMixin =
|
|
7896
|
+
__pyx_mstate->__pyx_ptype_6a_sync_10primitives_6_debug__DebugDaemonMixin = __Pyx_ImportType_3_1_4(__pyx_t_1, "a_sync.primitives._debug", "_DebugDaemonMixin",
|
|
7897
7897
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
7898
|
-
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__DebugDaemonMixin),
|
|
7898
|
+
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__DebugDaemonMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_10primitives_6_debug__DebugDaemonMixin),
|
|
7899
7899
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
7900
|
-
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__DebugDaemonMixin),
|
|
7900
|
+
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__DebugDaemonMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_10primitives_6_debug__DebugDaemonMixin),
|
|
7901
7901
|
#else
|
|
7902
|
-
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__DebugDaemonMixin),
|
|
7902
|
+
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__DebugDaemonMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_10primitives_6_debug__DebugDaemonMixin),
|
|
7903
7903
|
#endif
|
|
7904
|
-
|
|
7904
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_6a_sync_10primitives_6_debug__DebugDaemonMixin) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
7905
7905
|
__pyx_vtabptr_6a_sync_10primitives_6_debug__DebugDaemonMixin = (struct __pyx_vtabstruct_6a_sync_10primitives_6_debug__DebugDaemonMixin*)__Pyx_GetVtable(__pyx_mstate->__pyx_ptype_6a_sync_10primitives_6_debug__DebugDaemonMixin); if (unlikely(!__pyx_vtabptr_6a_sync_10primitives_6_debug__DebugDaemonMixin)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
7906
7906
|
__pyx_vtabptr_6a_sync_10primitives_5locks_5event_CythonEvent = &__pyx_vtable_6a_sync_10primitives_5locks_5event_CythonEvent;
|
|
7907
7907
|
__pyx_vtable_6a_sync_10primitives_5locks_5event_CythonEvent.__pyx_base = *__pyx_vtabptr_6a_sync_10primitives_6_debug__DebugDaemonMixin;
|
|
@@ -8014,28 +8014,28 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
8014
8014
|
/*--- Type import code ---*/
|
|
8015
8015
|
__pyx_t_1 = PyImport_ImportModule("a_sync.primitives._loggable"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 1, __pyx_L1_error)
|
|
8016
8016
|
__Pyx_GOTREF(__pyx_t_1);
|
|
8017
|
-
__pyx_mstate->__pyx_ptype_6a_sync_10primitives_9_loggable__LoggerMixin =
|
|
8017
|
+
__pyx_mstate->__pyx_ptype_6a_sync_10primitives_9_loggable__LoggerMixin = __Pyx_ImportType_3_1_4(__pyx_t_1, "a_sync.primitives._loggable", "_LoggerMixin",
|
|
8018
8018
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
8019
|
-
sizeof(struct __pyx_obj_6a_sync_10primitives_9_loggable__LoggerMixin),
|
|
8019
|
+
sizeof(struct __pyx_obj_6a_sync_10primitives_9_loggable__LoggerMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_10primitives_9_loggable__LoggerMixin),
|
|
8020
8020
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
8021
|
-
sizeof(struct __pyx_obj_6a_sync_10primitives_9_loggable__LoggerMixin),
|
|
8021
|
+
sizeof(struct __pyx_obj_6a_sync_10primitives_9_loggable__LoggerMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_10primitives_9_loggable__LoggerMixin),
|
|
8022
8022
|
#else
|
|
8023
|
-
sizeof(struct __pyx_obj_6a_sync_10primitives_9_loggable__LoggerMixin),
|
|
8023
|
+
sizeof(struct __pyx_obj_6a_sync_10primitives_9_loggable__LoggerMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_10primitives_9_loggable__LoggerMixin),
|
|
8024
8024
|
#endif
|
|
8025
|
-
|
|
8025
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_6a_sync_10primitives_9_loggable__LoggerMixin) __PYX_ERR(2, 1, __pyx_L1_error)
|
|
8026
8026
|
__pyx_vtabptr_6a_sync_10primitives_9_loggable__LoggerMixin = (struct __pyx_vtabstruct_6a_sync_10primitives_9_loggable__LoggerMixin*)__Pyx_GetVtable(__pyx_mstate->__pyx_ptype_6a_sync_10primitives_9_loggable__LoggerMixin); if (unlikely(!__pyx_vtabptr_6a_sync_10primitives_9_loggable__LoggerMixin)) __PYX_ERR(2, 1, __pyx_L1_error)
|
|
8027
8027
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
8028
8028
|
__pyx_t_1 = PyImport_ImportModule("a_sync.primitives._debug"); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 3, __pyx_L1_error)
|
|
8029
8029
|
__Pyx_GOTREF(__pyx_t_1);
|
|
8030
|
-
__pyx_mstate->__pyx_ptype_6a_sync_10primitives_6_debug__LoopBoundMixin =
|
|
8030
|
+
__pyx_mstate->__pyx_ptype_6a_sync_10primitives_6_debug__LoopBoundMixin = __Pyx_ImportType_3_1_4(__pyx_t_1, "a_sync.primitives._debug", "_LoopBoundMixin",
|
|
8031
8031
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
8032
|
-
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__LoopBoundMixin),
|
|
8032
|
+
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__LoopBoundMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_10primitives_6_debug__LoopBoundMixin),
|
|
8033
8033
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
8034
|
-
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__LoopBoundMixin),
|
|
8034
|
+
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__LoopBoundMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_10primitives_6_debug__LoopBoundMixin),
|
|
8035
8035
|
#else
|
|
8036
|
-
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__LoopBoundMixin),
|
|
8036
|
+
sizeof(struct __pyx_obj_6a_sync_10primitives_6_debug__LoopBoundMixin), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_10primitives_6_debug__LoopBoundMixin),
|
|
8037
8037
|
#endif
|
|
8038
|
-
|
|
8038
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_6a_sync_10primitives_6_debug__LoopBoundMixin) __PYX_ERR(3, 3, __pyx_L1_error)
|
|
8039
8039
|
__pyx_vtabptr_6a_sync_10primitives_6_debug__LoopBoundMixin = (struct __pyx_vtabstruct_6a_sync_10primitives_6_debug__LoopBoundMixin*)__Pyx_GetVtable(__pyx_mstate->__pyx_ptype_6a_sync_10primitives_6_debug__LoopBoundMixin); if (unlikely(!__pyx_vtabptr_6a_sync_10primitives_6_debug__LoopBoundMixin)) __PYX_ERR(3, 3, __pyx_L1_error)
|
|
8040
8040
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
8041
8041
|
__Pyx_RefNannyFinishContext();
|
|
@@ -8348,7 +8348,7 @@ __Pyx_RefNannySetupContext("PyInit_event", 0);
|
|
|
8348
8348
|
(void)__Pyx_modinit_variable_import_code(__pyx_mstate);
|
|
8349
8349
|
(void)__Pyx_modinit_function_import_code(__pyx_mstate);
|
|
8350
8350
|
/*--- Execution code ---*/
|
|
8351
|
-
__Pyx_TraceStartFunc("PyInit_event", __pyx_f[0], 1,
|
|
8351
|
+
__Pyx_TraceStartFunc("PyInit_event", __pyx_f[0], 1, 1, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
|
|
8352
8352
|
|
|
8353
8353
|
/* "a_sync/primitives/locks/event.pyx":6
|
|
8354
8354
|
* """
|
|
@@ -8569,7 +8569,7 @@ __Pyx_RefNannySetupContext("PyInit_event", 0);
|
|
|
8569
8569
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
8570
8570
|
* def __setstate_cython__(self, __pyx_state):
|
|
8571
8571
|
*/
|
|
8572
|
-
__Pyx_TraceLine(1,
|
|
8572
|
+
__Pyx_TraceLine(1,0,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
8573
8573
|
__pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_10primitives_5locks_5event_11CythonEvent_23__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_CythonEvent___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_primitives_locks_event, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[13])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
8574
8574
|
__Pyx_GOTREF(__pyx_t_3);
|
|
8575
8575
|
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)
|
|
@@ -8601,12 +8601,12 @@ __Pyx_RefNannySetupContext("PyInit_event", 0);
|
|
|
8601
8601
|
* """
|
|
8602
8602
|
* This module provides an enhanced version of asyncio.Event with additional debug logging to help detect deadlocks.
|
|
8603
8603
|
*/
|
|
8604
|
-
__Pyx_TraceLine(1,
|
|
8604
|
+
__Pyx_TraceLine(1,1,0,__PYX_ERR(0, 1, __pyx_L1_error))
|
|
8605
8605
|
__pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
8606
8606
|
__Pyx_GOTREF(__pyx_t_3);
|
|
8607
8607
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_3) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
8608
8608
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
8609
|
-
__Pyx_TraceReturnValue(Py_None,
|
|
8609
|
+
__Pyx_TraceReturnValue(Py_None, 1, 0, __PYX_ERR(0, 1, __pyx_L1_error));
|
|
8610
8610
|
__Pyx_PyMonitoring_ExitScope(0);
|
|
8611
8611
|
|
|
8612
8612
|
/*--- Wrapped vars code ---*/
|
|
@@ -8616,7 +8616,7 @@ __Pyx_RefNannySetupContext("PyInit_event", 0);
|
|
|
8616
8616
|
__Pyx_XDECREF(__pyx_t_2);
|
|
8617
8617
|
__Pyx_XDECREF(__pyx_t_3);
|
|
8618
8618
|
__Pyx_TraceException(__pyx_lineno, 0, 0);
|
|
8619
|
-
__Pyx_TraceExceptionUnwind(
|
|
8619
|
+
__Pyx_TraceExceptionUnwind(1, 0);
|
|
8620
8620
|
if (__pyx_m) {
|
|
8621
8621
|
if (__pyx_mstate->__pyx_d && stringtab_initialized) {
|
|
8622
8622
|
__Pyx_AddTraceback("init a_sync.primitives.locks.event", __pyx_clineno, __pyx_lineno, __pyx_filename);
|
|
@@ -11239,6 +11239,7 @@ static int __pyx_CommonTypesMetaclass_init(PyObject *module) {
|
|
|
11239
11239
|
return -1;
|
|
11240
11240
|
}
|
|
11241
11241
|
mstate->__pyx_CommonTypesMetaclassType = __Pyx_FetchCommonTypeFromSpec(NULL, module, &__pyx_CommonTypesMetaclass_spec, bases);
|
|
11242
|
+
Py_DECREF(bases);
|
|
11242
11243
|
if (unlikely(mstate->__pyx_CommonTypesMetaclassType == NULL)) {
|
|
11243
11244
|
return -1;
|
|
11244
11245
|
}
|
|
@@ -13008,15 +13009,15 @@ static CYTHON_INLINE __Pyx_PySendResult __Pyx_Coroutine_Yield_From(__pyx_Corouti
|
|
|
13008
13009
|
}
|
|
13009
13010
|
|
|
13010
13011
|
/* TypeImport */
|
|
13011
|
-
#ifndef
|
|
13012
|
-
#define
|
|
13013
|
-
static PyTypeObject *
|
|
13014
|
-
size_t size, size_t alignment, enum
|
|
13012
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_4
|
|
13013
|
+
#define __PYX_HAVE_RT_ImportType_3_1_4
|
|
13014
|
+
static PyTypeObject *__Pyx_ImportType_3_1_4(PyObject *module, const char *module_name, const char *class_name,
|
|
13015
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_4 check_size)
|
|
13015
13016
|
{
|
|
13016
13017
|
PyObject *result = 0;
|
|
13017
13018
|
Py_ssize_t basicsize;
|
|
13018
13019
|
Py_ssize_t itemsize;
|
|
13019
|
-
#
|
|
13020
|
+
#ifdef Py_LIMITED_API
|
|
13020
13021
|
PyObject *py_basicsize;
|
|
13021
13022
|
PyObject *py_itemsize;
|
|
13022
13023
|
#endif
|
|
@@ -13029,7 +13030,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module
|
|
|
13029
13030
|
module_name, class_name);
|
|
13030
13031
|
goto bad;
|
|
13031
13032
|
}
|
|
13032
|
-
#
|
|
13033
|
+
#ifndef Py_LIMITED_API
|
|
13033
13034
|
basicsize = ((PyTypeObject *)result)->tp_basicsize;
|
|
13034
13035
|
itemsize = ((PyTypeObject *)result)->tp_itemsize;
|
|
13035
13036
|
#else
|
|
@@ -13067,7 +13068,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module
|
|
|
13067
13068
|
module_name, class_name, size, basicsize+itemsize);
|
|
13068
13069
|
goto bad;
|
|
13069
13070
|
}
|
|
13070
|
-
if (check_size ==
|
|
13071
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_4 &&
|
|
13071
13072
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
13072
13073
|
PyErr_Format(PyExc_ValueError,
|
|
13073
13074
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -13075,7 +13076,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module
|
|
|
13075
13076
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
13076
13077
|
goto bad;
|
|
13077
13078
|
}
|
|
13078
|
-
else if (check_size ==
|
|
13079
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_4 && (size_t)basicsize > size) {
|
|
13079
13080
|
if (PyErr_WarnFormat(NULL, 0,
|
|
13080
13081
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
13081
13082
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -16356,6 +16357,10 @@ static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObj
|
|
|
16356
16357
|
PyCode_NewWithPosOnlyArgs
|
|
16357
16358
|
#endif
|
|
16358
16359
|
(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, name, fline, lnos, __pyx_mstate_global->__pyx_empty_bytes);
|
|
16360
|
+
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030c00A1
|
|
16361
|
+
if (likely(result))
|
|
16362
|
+
result->_co_firsttraceable = 0;
|
|
16363
|
+
#endif
|
|
16359
16364
|
return result;
|
|
16360
16365
|
}
|
|
16361
16366
|
#elif PY_VERSION_HEX >= 0x030800B2 && !CYTHON_COMPILING_IN_PYPY
|
|
Binary file
|