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
a_sync/a_sync/method.c
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.1.
|
|
1
|
+
/* Generated by Cython 3.1.3 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -32,8 +32,8 @@ END: Cython Metadata */
|
|
|
32
32
|
#elif PY_VERSION_HEX < 0x03080000
|
|
33
33
|
#error Cython requires Python 3.8+.
|
|
34
34
|
#else
|
|
35
|
-
#define __PYX_ABI_VERSION "
|
|
36
|
-
#define CYTHON_HEX_VERSION
|
|
35
|
+
#define __PYX_ABI_VERSION "3_1_3"
|
|
36
|
+
#define CYTHON_HEX_VERSION 0x030103F0
|
|
37
37
|
#define CYTHON_FUTURE_DIVISION 1
|
|
38
38
|
/* CModulePreamble */
|
|
39
39
|
#include <stddef.h>
|
|
@@ -396,6 +396,9 @@ END: Cython Metadata */
|
|
|
396
396
|
enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
|
|
397
397
|
#endif
|
|
398
398
|
#endif
|
|
399
|
+
#ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
|
|
400
|
+
#define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
|
|
401
|
+
#endif
|
|
399
402
|
#ifndef __has_attribute
|
|
400
403
|
#define __has_attribute(x) 0
|
|
401
404
|
#endif
|
|
@@ -2993,22 +2996,22 @@ static int __Pyx_call_next_tp_traverse(PyObject* obj, visitproc v, void *a, trav
|
|
|
2993
2996
|
static void __Pyx_call_next_tp_clear(PyObject* obj, inquiry current_tp_clear);
|
|
2994
2997
|
|
|
2995
2998
|
/* TypeImport.proto */
|
|
2996
|
-
#ifndef
|
|
2997
|
-
#define
|
|
2999
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_3
|
|
3000
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_3
|
|
2998
3001
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2999
3002
|
#include <stdalign.h>
|
|
3000
3003
|
#endif
|
|
3001
3004
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
3002
|
-
#define
|
|
3005
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) alignof(s)
|
|
3003
3006
|
#else
|
|
3004
|
-
#define
|
|
3007
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) sizeof(void*)
|
|
3005
3008
|
#endif
|
|
3006
|
-
enum
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3009
|
+
enum __Pyx_ImportType_CheckSize_3_1_3 {
|
|
3010
|
+
__Pyx_ImportType_CheckSize_Error_3_1_3 = 0,
|
|
3011
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3 = 1,
|
|
3012
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3 = 2
|
|
3010
3013
|
};
|
|
3011
|
-
static PyTypeObject *
|
|
3014
|
+
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);
|
|
3012
3015
|
#endif
|
|
3013
3016
|
|
|
3014
3017
|
/* GetVTable.proto */
|
|
@@ -3284,7 +3287,7 @@ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt
|
|
|
3284
3287
|
static int __Pyx_ExportFunction(const char *name, void (*f)(void), const char *sig);
|
|
3285
3288
|
|
|
3286
3289
|
/* FunctionImport.proto */
|
|
3287
|
-
static int
|
|
3290
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
|
|
3288
3291
|
|
|
3289
3292
|
/* MultiPhaseInitModuleState.proto */
|
|
3290
3293
|
#if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE
|
|
@@ -3681,7 +3684,7 @@ static const char __pyx_k_Prevent_setting_the_descriptor[] = "\n Prevent
|
|
|
3681
3684
|
static const char __pyx_k_Q_c_1A_q_GvVST_iq_d_U_RS_4_1_6[] = "\320\004=\270Q\360$\000\t\014\210;\220c\320\031+\2501\250A\330\014\027\220q\230\007\320\037G\300v\310V\320ST\360\006\000\t\022\220\027\230\016\240i\250q\260\006\260d\270+\300U\310(\320RS\330\010\013\2104\210{\230!\2301\360\006\000\r\016\330\r\032\230!\2306\240\021\340\014\017\210q\330\020\033\2301\330\024\033\320\033F\300f\310F\320RX\320XY\340\014\025\220V\2301\230A\330\010\013\2101\330\014\027\220q\330\020\027\320\027C\3008\3106\320QW\320WX\340\010\017\210q";
|
|
3682
3685
|
static const char __pyx_k_Return_a_string_representation[] = "\n Return a string representation of the bound method.\n\n Examples:\n >>> bound_method = ASyncBoundMethod(instance, my_function, True)\n >>> repr(bound_method)\n '<ASyncBoundMethod for function module.ClassName.method_name bound to instance>'\n ";
|
|
3683
3686
|
static const char __pyx_k_calling_s_with_args_s_kwargs_s[] = "calling %s with args: %s kwargs: %s";
|
|
3684
|
-
static const char __pyx_k_hk_A_1_S_S_U_U_V_HAQ_7_314H_VW[] = "\200\001\360\006\000\005\010\200
|
|
3687
|
+
static const char __pyx_k_hk_A_1_S_S_U_U_V_HAQ_7_314H_VW[] = "\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\"S\007\360\000\000S\007U\007\360\000\000U\007V\007\330\004\023\320\023$\240H\250A\250Q\330\004\007\200|\2207\230!\330\0103\2601\3204H\310\016\320VW\330\004\013\2101";
|
|
3685
3688
|
static const char __pyx_k_pyx_unpickle__ASyncBoundMethod[] = "__pyx_unpickle__ASyncBoundMethod";
|
|
3686
3689
|
static const char __pyx_k_ASyncBoundMethodSyncDefault_I_P[] = "'ASyncBoundMethodSyncDefault[I, P, T]'";
|
|
3687
3690
|
static const char __pyx_k_ASyncBoundMethod___cancel_cache[] = "ASyncBoundMethod.__cancel_cache_handle";
|
|
@@ -3733,7 +3736,7 @@ static const char __pyx_k_ASyncMethodDescriptor___set___li[] = "ASyncMethodDescr
|
|
|
3733
3736
|
static const char __pyx_k_A_1_9Cq_1_d_M_0_nD0ET_ST_31_1L_q[] = "\200A\330';\2701\330\t\n\360\030\000\t\014\2109\220C\220q\330\014\023\2201\360\006\000\t\037\230d\240!\330\010\"\240(\250!\340\010\t\330\014\024\220M\240\021\240!\330\017\020\330\014\024\320\0240\260\001\330\020\032\230$\230n\250D\3200E\300T\310\032\320ST\340\014\031\230\021\230.\250\001\330\014\031\230\021\320\0323\2601\330\010\033\2301\230L\250\n\260!\330\010\017\210q";
|
|
3734
3737
|
static const char __pyx_k_A_1_9Cq_1_d_M_y_1_L_xs_31_d_4I_Z[] = "\200A\330';\2701\330\t\n\360\030\000\t\014\2109\220C\220q\330\014\023\2201\340\010\036\230d\240!\330\010\"\240(\250!\340\010\t\330\014\024\220M\240\021\240!\330\017\020\330\014\017\210y\230\003\2301\330\020 \240\001\340\014$\240L\260\001\260\021\330\014\017\210x\220s\230!\330\020\030\320\0303\2601\330\024\036\230d\240.\260\004\3204I\310\024\310Z\320WX\340\021\031\230\023\230A\330\020\030\320\0304\260A\330\024\036\230d\240.\260\004\3204I\310\024\310Z\320WX\340\021\033\2301\230J\240a\330\020\021\330\024\027\220x\230q\330\030 \320 ;\2701\330\034\035\330\034 \240\001\330\034 \240\001\330\036\"\240*\250A\360\006\000\031!\320 <\270A\330\034\035\330\034 \240\001\330\034 \240\001\330\036\"\240*\250A\340\027\030\330\024\034\320\034,\250A\330\030\031\330\030\034\230A\330\030\034\230A\330\032\036\230j\250\001\360\006\000\021\031\320\030(\250\001\330\024\036\230d\240.\260\004\3204I\310\024\310Z\320WX\340\014\031\230\021\230.\250\001\330\014\031\230\021\320\0323\2601\330\010\033\2301\230L\250\n\260!\330\010\017\210q";
|
|
3735
3738
|
static const char __pyx_k_A_4G1_9Cq_1_d_M_q_nD0ET_ST_31_1L[] = "\200A\330'4\260G\2701\330\t\n\360\034\000\t\014\2109\220C\220q\330\014\023\2201\340\010\036\230d\240!\330\010\"\240(\250!\340\010\t\330\014\024\220M\240\021\240!\330\017\020\330\014\024\320\024/\250q\330\020\032\230$\230n\250D\3200E\300T\310\032\320ST\340\014\031\230\021\230.\250\001\330\014\031\230\021\320\0323\2601\330\010\033\2301\230L\250\n\260!\330\010\017\210q";
|
|
3736
|
-
static const char __pyx_k_A_Q_4q_Q_H_4A_UV_Qiq_WB_6hj_xq_i[] = "\200A\340\022\023\330\021\022\360\006\000\n\013\360.\000\t\r\320\014\035\230Q\360\010\000\t\034\2304\230q\340\010\014\320\014%\240Q\330\010\014\320\014\034\230H\320$4\260A\260[\300\n\310+\320UV\360\006\000\t\014\210:\220Q\220i\230q\330\r\023\220:\230W\240B\320&6\260h\270j\310\001\330\014\027\320\027'\240x\250q\340\010\026\220i\230q\240\006\240i\250
|
|
3739
|
+
static const char __pyx_k_A_Q_4q_Q_H_4A_UV_Qiq_WB_6hj_xq_i[] = "\200A\340\022\023\330\021\022\360\006\000\n\013\360.\000\t\r\320\014\035\230Q\360\010\000\t\034\2304\230q\340\010\014\320\014%\240Q\330\010\014\320\014\034\230H\320$4\260A\260[\300\n\310+\320UV\360\006\000\t\014\210:\220Q\220i\230q\330\r\023\220:\230W\240B\320&6\260h\270j\310\001\330\014\027\320\027'\240x\250q\340\010\026\220i\230q\240\006\240i\250\177\270h\300f\310A\330\010\014\320\014\035\230Q\330\010\t\330\010\026\220a\220v\230Q";
|
|
3737
3740
|
static const char __pyx_k_Incompatible_checksums_0x_x_vs_0[] = "Incompatible checksums (0x%x vs (0x4cfb6d9, 0x052db90, 0xd78444b) = (_ASyncFunction__async_def, _ASyncFunction__async_def_cached, _ASyncFunction__async_wrap, _ASyncFunction__asyncified, _ASyncFunction__modified_fn, _ASyncFunction__sync_default, _ASyncFunction__sync_default_cached, _ASyncFunction__sync_wrap, _ModifiedMixin__await, _ModifiedMixin__default, __weakself__, __wrapped__, _cache_handle, _fn, _is_async_def, modifiers))";
|
|
3738
3741
|
static const char __pyx_k_Note_that_Cython_is_deliberately[] = "Note that Cython is deliberately stricter than PEP-484 and rejects subclasses of builtin types. If you need to pass subclasses then set the 'annotation_typing' directive to False.";
|
|
3739
3742
|
static const char __pyx_k_awaiting_s_for_instance_s_args_s[] = "awaiting %s for instance: %s args: %s kwargs: %s";
|
|
@@ -6749,8 +6752,8 @@ static void __pyx_f_6a_sync_6a_sync_6method__update_cache_timer(PyObject *__pyx_
|
|
|
6749
6752
|
__Pyx_TraceLine(285,5,0,__PYX_ERR(0, 285, __pyx_L1_error))
|
|
6750
6753
|
__pyx_t_1 = __pyx_v_bound->_cache_handle;
|
|
6751
6754
|
__Pyx_INCREF(__pyx_t_1);
|
|
6752
|
-
__pyx_v_handle = __pyx_t_1;
|
|
6753
6755
|
__Pyx_INCREF(__pyx_t_1);
|
|
6756
|
+
__pyx_v_handle = __pyx_t_1;
|
|
6754
6757
|
__pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely((__pyx_t_2 < 0))) __PYX_ERR(0, 285, __pyx_L1_error)
|
|
6755
6758
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
6756
6759
|
if (__pyx_t_2) {
|
|
@@ -8748,8 +8751,8 @@ static int __pyx_f_6a_sync_6a_sync_6method__should_await(struct __pyx_obj_6a_syn
|
|
|
8748
8751
|
__Pyx_TraceLine(508,18,0,__PYX_ERR(0, 508, __pyx_L1_error))
|
|
8749
8752
|
__pyx_t_1 = ((struct __pyx_vtabstruct_6a_sync_6a_sync_6method__ASyncBoundMethod *)__pyx_v_self->__pyx_base.__pyx_base.__pyx_vtab)->__pyx_base.__pyx_base.get_default(((struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin *)__pyx_v_self)); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 508, __pyx_L1_error)
|
|
8750
8753
|
__Pyx_GOTREF(__pyx_t_1);
|
|
8751
|
-
__pyx_v_default = ((PyObject*)__pyx_t_1);
|
|
8752
8754
|
__Pyx_INCREF(__pyx_t_1);
|
|
8755
|
+
__pyx_v_default = ((PyObject*)__pyx_t_1);
|
|
8753
8756
|
__pyx_t_2 = (__pyx_t_1 != Py_None)&&(__Pyx_PyUnicode_IS_TRUE(__pyx_t_1) != 0);
|
|
8754
8757
|
if (unlikely(((!CYTHON_ASSUME_SAFE_MACROS) && __pyx_t_2 < 0))) __PYX_ERR(0, 508, __pyx_L1_error)
|
|
8755
8758
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -8787,8 +8790,8 @@ static int __pyx_f_6a_sync_6a_sync_6method__should_await(struct __pyx_obj_6a_syn
|
|
|
8787
8790
|
__Pyx_TraceLine(510,29,0,__PYX_ERR(0, 510, __pyx_L1_error))
|
|
8788
8791
|
__pyx_t_1 = ((struct __pyx_vtabstruct_6a_sync_6a_sync_6method__ASyncBoundMethod *)__pyx_v_self->__pyx_base.__pyx_base.__pyx_vtab)->__pyx___c_self__(__pyx_v_self); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 510, __pyx_L1_error)
|
|
8789
8792
|
__Pyx_GOTREF(__pyx_t_1);
|
|
8790
|
-
__pyx_v_instance = __pyx_t_1;
|
|
8791
8793
|
__Pyx_INCREF(__pyx_t_1);
|
|
8794
|
+
__pyx_v_instance = __pyx_t_1;
|
|
8792
8795
|
__pyx_t_3 = __pyx_t_1;
|
|
8793
8796
|
__Pyx_INCREF(__pyx_t_3);
|
|
8794
8797
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -9613,8 +9616,8 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9613
9616
|
PyObject *__pyx_t_3 = NULL;
|
|
9614
9617
|
size_t __pyx_t_4;
|
|
9615
9618
|
int __pyx_t_5;
|
|
9616
|
-
|
|
9617
|
-
|
|
9619
|
+
int __pyx_t_6;
|
|
9620
|
+
PyObject *__pyx_t_7 = NULL;
|
|
9618
9621
|
int __pyx_lineno = 0;
|
|
9619
9622
|
const char *__pyx_filename = NULL;
|
|
9620
9623
|
int __pyx_clineno = 0;
|
|
@@ -9654,10 +9657,10 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9654
9657
|
__Pyx_GOTREF(__pyx_t_1);
|
|
9655
9658
|
}
|
|
9656
9659
|
__pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely((__pyx_t_5 == (int)-1) && PyErr_Occurred())) __PYX_ERR(0, 639, __pyx_L1_error)
|
|
9657
|
-
__pyx_v_debug_logs = __pyx_t_5;
|
|
9658
|
-
__pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely((__pyx_t_5 < 0))) __PYX_ERR(0, 639, __pyx_L1_error)
|
|
9659
9660
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
9660
|
-
|
|
9661
|
+
__pyx_v_debug_logs = __pyx_t_5;
|
|
9662
|
+
__pyx_t_6 = __pyx_t_5;
|
|
9663
|
+
if (__pyx_t_6) {
|
|
9661
9664
|
|
|
9662
9665
|
/* "a_sync/a_sync/method.pyx":640
|
|
9663
9666
|
* cdef bint debug_logs
|
|
@@ -9670,17 +9673,17 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9670
9673
|
__pyx_t_3 = NULL;
|
|
9671
9674
|
__Pyx_INCREF(__pyx_v_6a_sync_6a_sync_6method__logger_log);
|
|
9672
9675
|
__pyx_t_2 = __pyx_v_6a_sync_6a_sync_6method__logger_log;
|
|
9673
|
-
|
|
9674
|
-
__Pyx_GOTREF(
|
|
9676
|
+
__pyx_t_7 = PyTuple_New(3); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 640, __pyx_L1_error)
|
|
9677
|
+
__Pyx_GOTREF(__pyx_t_7);
|
|
9675
9678
|
__Pyx_INCREF((PyObject *)__pyx_v_self);
|
|
9676
9679
|
__Pyx_GIVEREF((PyObject *)__pyx_v_self);
|
|
9677
|
-
if (__Pyx_PyTuple_SET_ITEM(
|
|
9680
|
+
if (__Pyx_PyTuple_SET_ITEM(__pyx_t_7, 0, ((PyObject *)__pyx_v_self)) != (0)) __PYX_ERR(0, 640, __pyx_L1_error);
|
|
9678
9681
|
__Pyx_INCREF(__pyx_v_args);
|
|
9679
9682
|
__Pyx_GIVEREF(__pyx_v_args);
|
|
9680
|
-
if (__Pyx_PyTuple_SET_ITEM(
|
|
9683
|
+
if (__Pyx_PyTuple_SET_ITEM(__pyx_t_7, 1, __pyx_v_args) != (0)) __PYX_ERR(0, 640, __pyx_L1_error);
|
|
9681
9684
|
__Pyx_INCREF(__pyx_v_kwargs);
|
|
9682
9685
|
__Pyx_GIVEREF(__pyx_v_kwargs);
|
|
9683
|
-
if (__Pyx_PyTuple_SET_ITEM(
|
|
9686
|
+
if (__Pyx_PyTuple_SET_ITEM(__pyx_t_7, 2, __pyx_v_kwargs) != (0)) __PYX_ERR(0, 640, __pyx_L1_error);
|
|
9684
9687
|
__pyx_t_4 = 1;
|
|
9685
9688
|
#if CYTHON_UNPACK_METHODS
|
|
9686
9689
|
if (unlikely(PyMethod_Check(__pyx_t_2))) {
|
|
@@ -9694,10 +9697,10 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9694
9697
|
}
|
|
9695
9698
|
#endif
|
|
9696
9699
|
{
|
|
9697
|
-
PyObject *__pyx_callargs[4] = {__pyx_t_3, __pyx_v_6a_sync_6a_sync_6method_DEBUG, __pyx_mstate_global->__pyx_kp_u_calling_s_with_args_s_kwargs_s,
|
|
9700
|
+
PyObject *__pyx_callargs[4] = {__pyx_t_3, __pyx_v_6a_sync_6a_sync_6method_DEBUG, __pyx_mstate_global->__pyx_kp_u_calling_s_with_args_s_kwargs_s, __pyx_t_7};
|
|
9698
9701
|
__pyx_t_1 = __Pyx_PyObject_FastCall(__pyx_t_2, __pyx_callargs+__pyx_t_4, (4-__pyx_t_4) | (__pyx_t_4*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET));
|
|
9699
9702
|
__Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
9700
|
-
__Pyx_DECREF(
|
|
9703
|
+
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
|
|
9701
9704
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
9702
9705
|
if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 640, __pyx_L1_error)
|
|
9703
9706
|
__Pyx_GOTREF(__pyx_t_1);
|
|
@@ -9725,24 +9728,24 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9725
9728
|
__Pyx_GOTREF(__pyx_t_1);
|
|
9726
9729
|
__pyx_t_2 = ((struct __pyx_vtabstruct_6a_sync_6a_sync_6method__ASyncBoundMethod *)__pyx_v_self->__pyx_base.__pyx_base.__pyx_vtab)->__pyx___c_self__(__pyx_v_self); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 643, __pyx_L1_error)
|
|
9727
9730
|
__Pyx_GOTREF(__pyx_t_2);
|
|
9728
|
-
|
|
9729
|
-
__Pyx_GOTREF(
|
|
9731
|
+
__pyx_t_7 = PyTuple_New(2); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 643, __pyx_L1_error)
|
|
9732
|
+
__Pyx_GOTREF(__pyx_t_7);
|
|
9730
9733
|
__Pyx_INCREF((PyObject *)__pyx_v_self);
|
|
9731
9734
|
__Pyx_GIVEREF((PyObject *)__pyx_v_self);
|
|
9732
|
-
if (__Pyx_PyTuple_SET_ITEM(
|
|
9735
|
+
if (__Pyx_PyTuple_SET_ITEM(__pyx_t_7, 0, ((PyObject *)__pyx_v_self)) != (0)) __PYX_ERR(0, 643, __pyx_L1_error);
|
|
9733
9736
|
__Pyx_GIVEREF(__pyx_t_2);
|
|
9734
|
-
if (__Pyx_PyTuple_SET_ITEM(
|
|
9737
|
+
if (__Pyx_PyTuple_SET_ITEM(__pyx_t_7, 1, __pyx_t_2) != (0)) __PYX_ERR(0, 643, __pyx_L1_error);
|
|
9735
9738
|
__pyx_t_2 = 0;
|
|
9736
|
-
__pyx_t_2 = PyNumber_Add(
|
|
9739
|
+
__pyx_t_2 = PyNumber_Add(__pyx_t_7, __pyx_v_args); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 643, __pyx_L1_error)
|
|
9737
9740
|
__Pyx_GOTREF(__pyx_t_2);
|
|
9738
|
-
__Pyx_DECREF(
|
|
9739
|
-
|
|
9740
|
-
__Pyx_GOTREF(
|
|
9741
|
-
__pyx_t_3 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_2,
|
|
9741
|
+
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
|
|
9742
|
+
__pyx_t_7 = PyDict_Copy(__pyx_v_kwargs); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 643, __pyx_L1_error)
|
|
9743
|
+
__Pyx_GOTREF(__pyx_t_7);
|
|
9744
|
+
__pyx_t_3 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_2, __pyx_t_7); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 643, __pyx_L1_error)
|
|
9742
9745
|
__Pyx_GOTREF(__pyx_t_3);
|
|
9743
9746
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
9744
9747
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
9745
|
-
__Pyx_DECREF(
|
|
9748
|
+
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
|
|
9746
9749
|
__Pyx_INCREF(__pyx_t_3);
|
|
9747
9750
|
__pyx_v_retval = __pyx_t_3;
|
|
9748
9751
|
__Pyx_INCREF(__pyx_t_3);
|
|
@@ -9757,33 +9760,33 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9757
9760
|
* # We can return the value.
|
|
9758
9761
|
*/
|
|
9759
9762
|
__Pyx_TraceLine(644,29,0,__PYX_ERR(0, 644, __pyx_L1_error))
|
|
9760
|
-
|
|
9763
|
+
__pyx_t_7 = NULL;
|
|
9761
9764
|
__Pyx_INCREF(__pyx_v_6a_sync_6a_sync_6method_isawaitable);
|
|
9762
9765
|
__pyx_t_2 = __pyx_v_6a_sync_6a_sync_6method_isawaitable;
|
|
9763
9766
|
__pyx_t_4 = 1;
|
|
9764
9767
|
#if CYTHON_UNPACK_METHODS
|
|
9765
9768
|
if (unlikely(PyMethod_Check(__pyx_t_2))) {
|
|
9766
|
-
|
|
9767
|
-
assert(
|
|
9769
|
+
__pyx_t_7 = PyMethod_GET_SELF(__pyx_t_2);
|
|
9770
|
+
assert(__pyx_t_7);
|
|
9768
9771
|
PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_2);
|
|
9769
|
-
__Pyx_INCREF(
|
|
9772
|
+
__Pyx_INCREF(__pyx_t_7);
|
|
9770
9773
|
__Pyx_INCREF(__pyx__function);
|
|
9771
9774
|
__Pyx_DECREF_SET(__pyx_t_2, __pyx__function);
|
|
9772
9775
|
__pyx_t_4 = 0;
|
|
9773
9776
|
}
|
|
9774
9777
|
#endif
|
|
9775
9778
|
{
|
|
9776
|
-
PyObject *__pyx_callargs[2] = {
|
|
9779
|
+
PyObject *__pyx_callargs[2] = {__pyx_t_7, __pyx_v_retval};
|
|
9777
9780
|
__pyx_t_3 = __Pyx_PyObject_FastCall(__pyx_t_2, __pyx_callargs+__pyx_t_4, (2-__pyx_t_4) | (__pyx_t_4*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET));
|
|
9778
|
-
__Pyx_XDECREF(
|
|
9781
|
+
__Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0;
|
|
9779
9782
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
9780
9783
|
if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 644, __pyx_L1_error)
|
|
9781
9784
|
__Pyx_GOTREF(__pyx_t_3);
|
|
9782
9785
|
}
|
|
9783
|
-
|
|
9786
|
+
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely((__pyx_t_6 < 0))) __PYX_ERR(0, 644, __pyx_L1_error)
|
|
9784
9787
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
9785
|
-
|
|
9786
|
-
if (
|
|
9788
|
+
__pyx_t_5 = (!__pyx_t_6);
|
|
9789
|
+
if (__pyx_t_5) {
|
|
9787
9790
|
|
|
9788
9791
|
/* "a_sync/a_sync/method.pyx":647
|
|
9789
9792
|
* # The coroutine was already awaited due to the use of an overriding flag kwarg.
|
|
@@ -9804,8 +9807,8 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9804
9807
|
* if debug_logs:
|
|
9805
9808
|
*/
|
|
9806
9809
|
__Pyx_TraceLine(648,33,0,__PYX_ERR(0, 648, __pyx_L1_error))
|
|
9807
|
-
|
|
9808
|
-
if (
|
|
9810
|
+
__pyx_t_5 = __pyx_f_6a_sync_6a_sync_6method__should_await(__pyx_v_self, __pyx_v_kwargs); if (unlikely(__pyx_t_5 == ((int)-1) && PyErr_Occurred())) __PYX_ERR(0, 648, __pyx_L1_error)
|
|
9811
|
+
if (__pyx_t_5) {
|
|
9809
9812
|
|
|
9810
9813
|
/* "a_sync/a_sync/method.pyx":650
|
|
9811
9814
|
* elif _should_await(self, kwargs):
|
|
@@ -9827,7 +9830,7 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9827
9830
|
__Pyx_TraceLine(651,39,0,__PYX_ERR(0, 651, __pyx_L1_error))
|
|
9828
9831
|
__pyx_t_2 = NULL;
|
|
9829
9832
|
__Pyx_INCREF(__pyx_v_6a_sync_6a_sync_6method__logger_log);
|
|
9830
|
-
|
|
9833
|
+
__pyx_t_7 = __pyx_v_6a_sync_6a_sync_6method__logger_log;
|
|
9831
9834
|
|
|
9832
9835
|
/* "a_sync/a_sync/method.pyx":652
|
|
9833
9836
|
* if debug_logs:
|
|
@@ -9853,22 +9856,22 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9853
9856
|
if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 3, __pyx_v_kwargs) != (0)) __PYX_ERR(0, 652, __pyx_L1_error);
|
|
9854
9857
|
__pyx_t_4 = 1;
|
|
9855
9858
|
#if CYTHON_UNPACK_METHODS
|
|
9856
|
-
if (unlikely(PyMethod_Check(
|
|
9857
|
-
__pyx_t_2 = PyMethod_GET_SELF(
|
|
9859
|
+
if (unlikely(PyMethod_Check(__pyx_t_7))) {
|
|
9860
|
+
__pyx_t_2 = PyMethod_GET_SELF(__pyx_t_7);
|
|
9858
9861
|
assert(__pyx_t_2);
|
|
9859
|
-
PyObject* __pyx__function = PyMethod_GET_FUNCTION(
|
|
9862
|
+
PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_7);
|
|
9860
9863
|
__Pyx_INCREF(__pyx_t_2);
|
|
9861
9864
|
__Pyx_INCREF(__pyx__function);
|
|
9862
|
-
__Pyx_DECREF_SET(
|
|
9865
|
+
__Pyx_DECREF_SET(__pyx_t_7, __pyx__function);
|
|
9863
9866
|
__pyx_t_4 = 0;
|
|
9864
9867
|
}
|
|
9865
9868
|
#endif
|
|
9866
9869
|
{
|
|
9867
9870
|
PyObject *__pyx_callargs[4] = {__pyx_t_2, __pyx_v_6a_sync_6a_sync_6method_DEBUG, __pyx_mstate_global->__pyx_kp_u_awaiting_s_for_s_args_s_kwargs_s, __pyx_t_1};
|
|
9868
|
-
__pyx_t_3 = __Pyx_PyObject_FastCall(
|
|
9871
|
+
__pyx_t_3 = __Pyx_PyObject_FastCall(__pyx_t_7, __pyx_callargs+__pyx_t_4, (4-__pyx_t_4) | (__pyx_t_4*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET));
|
|
9869
9872
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
9870
9873
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
9871
|
-
__Pyx_DECREF(
|
|
9874
|
+
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
|
|
9872
9875
|
if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 651, __pyx_L1_error)
|
|
9873
9876
|
__Pyx_GOTREF(__pyx_t_3);
|
|
9874
9877
|
}
|
|
@@ -9924,7 +9927,7 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9924
9927
|
* )
|
|
9925
9928
|
*/
|
|
9926
9929
|
__Pyx_TraceLine(656,53,0,__PYX_ERR(0, 656, __pyx_L1_error))
|
|
9927
|
-
|
|
9930
|
+
__pyx_t_7 = NULL;
|
|
9928
9931
|
__Pyx_INCREF(__pyx_v_6a_sync_6a_sync_6method__logger_log);
|
|
9929
9932
|
__pyx_t_1 = __pyx_v_6a_sync_6a_sync_6method__logger_log;
|
|
9930
9933
|
|
|
@@ -9953,19 +9956,19 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
9953
9956
|
__pyx_t_4 = 1;
|
|
9954
9957
|
#if CYTHON_UNPACK_METHODS
|
|
9955
9958
|
if (unlikely(PyMethod_Check(__pyx_t_1))) {
|
|
9956
|
-
|
|
9957
|
-
assert(
|
|
9959
|
+
__pyx_t_7 = PyMethod_GET_SELF(__pyx_t_1);
|
|
9960
|
+
assert(__pyx_t_7);
|
|
9958
9961
|
PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_1);
|
|
9959
|
-
__Pyx_INCREF(
|
|
9962
|
+
__Pyx_INCREF(__pyx_t_7);
|
|
9960
9963
|
__Pyx_INCREF(__pyx__function);
|
|
9961
9964
|
__Pyx_DECREF_SET(__pyx_t_1, __pyx__function);
|
|
9962
9965
|
__pyx_t_4 = 0;
|
|
9963
9966
|
}
|
|
9964
9967
|
#endif
|
|
9965
9968
|
{
|
|
9966
|
-
PyObject *__pyx_callargs[4] = {
|
|
9969
|
+
PyObject *__pyx_callargs[4] = {__pyx_t_7, __pyx_v_6a_sync_6a_sync_6method_DEBUG, __pyx_mstate_global->__pyx_kp_u_returning_s_for_s_args_s_kwargs, __pyx_t_2};
|
|
9967
9970
|
__pyx_t_3 = __Pyx_PyObject_FastCall(__pyx_t_1, __pyx_callargs+__pyx_t_4, (4-__pyx_t_4) | (__pyx_t_4*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET));
|
|
9968
|
-
__Pyx_XDECREF(
|
|
9971
|
+
__Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0;
|
|
9969
9972
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
9970
9973
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
9971
9974
|
if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 656, __pyx_L1_error)
|
|
@@ -10009,7 +10012,7 @@ static PyObject *__pyx_pf_6a_sync_6a_sync_6method_17_ASyncBoundMethod_4__call__(
|
|
|
10009
10012
|
__Pyx_XDECREF(__pyx_t_1);
|
|
10010
10013
|
__Pyx_XDECREF(__pyx_t_2);
|
|
10011
10014
|
__Pyx_XDECREF(__pyx_t_3);
|
|
10012
|
-
__Pyx_XDECREF(
|
|
10015
|
+
__Pyx_XDECREF(__pyx_t_7);
|
|
10013
10016
|
__Pyx_TraceException(__pyx_lineno, 0, 0);
|
|
10014
10017
|
#if CYTHON_USE_SYS_MONITORING
|
|
10015
10018
|
__Pyx_TraceExceptionUnwind(0, 0);
|
|
@@ -17617,15 +17620,15 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
17617
17620
|
/*--- Type init code ---*/
|
|
17618
17621
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync.function"); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
17619
17622
|
__Pyx_GOTREF(__pyx_t_1);
|
|
17620
|
-
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction =
|
|
17623
|
+
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.a_sync.function", "_ASyncFunction",
|
|
17621
17624
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
17622
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction),
|
|
17625
|
+
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),
|
|
17623
17626
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
17624
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction),
|
|
17627
|
+
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),
|
|
17625
17628
|
#else
|
|
17626
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction),
|
|
17629
|
+
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),
|
|
17627
17630
|
#endif
|
|
17628
|
-
|
|
17631
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
17629
17632
|
__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(0, 1, __pyx_L1_error)
|
|
17630
17633
|
__pyx_vtabptr_6a_sync_6a_sync_6method__ASyncBoundMethod = &__pyx_vtable_6a_sync_6a_sync_6method__ASyncBoundMethod;
|
|
17631
17634
|
__pyx_vtable_6a_sync_6a_sync_6method__ASyncBoundMethod.__pyx_base = *__pyx_vtabptr_6a_sync_6a_sync_8function__ASyncFunction;
|
|
@@ -17803,53 +17806,53 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
17803
17806
|
/*--- Type import code ---*/
|
|
17804
17807
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync.modifiers.manager"); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 1, __pyx_L1_error)
|
|
17805
17808
|
__Pyx_GOTREF(__pyx_t_1);
|
|
17806
|
-
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_9modifiers_7manager_ModifierManager =
|
|
17809
|
+
__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",
|
|
17807
17810
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
17808
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
17811
|
+
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),
|
|
17809
17812
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
17810
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
17813
|
+
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),
|
|
17811
17814
|
#else
|
|
17812
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_9modifiers_7manager_ModifierManager),
|
|
17815
|
+
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),
|
|
17813
17816
|
#endif
|
|
17814
|
-
|
|
17817
|
+
__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)
|
|
17815
17818
|
__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)
|
|
17816
17819
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
17817
17820
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync.function"); if (unlikely(!__pyx_t_1)) __PYX_ERR(4, 3, __pyx_L1_error)
|
|
17818
17821
|
__Pyx_GOTREF(__pyx_t_1);
|
|
17819
|
-
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ModifiedMixin =
|
|
17822
|
+
__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ModifiedMixin = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.a_sync.function", "_ModifiedMixin",
|
|
17820
17823
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
17821
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin),
|
|
17824
|
+
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),
|
|
17822
17825
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
17823
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin),
|
|
17826
|
+
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),
|
|
17824
17827
|
#else
|
|
17825
|
-
sizeof(struct __pyx_obj_6a_sync_6a_sync_8function__ModifiedMixin),
|
|
17828
|
+
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),
|
|
17826
17829
|
#endif
|
|
17827
|
-
|
|
17830
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_6a_sync_8function__ModifiedMixin) __PYX_ERR(4, 3, __pyx_L1_error)
|
|
17828
17831
|
__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(4, 3, __pyx_L1_error)
|
|
17829
17832
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
17830
17833
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(5, 9, __pyx_L1_error)
|
|
17831
17834
|
__Pyx_GOTREF(__pyx_t_1);
|
|
17832
|
-
__pyx_mstate->__pyx_ptype_7cpython_4type_type =
|
|
17835
|
+
__pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_3(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
17833
17836
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
17834
|
-
sizeof(PyTypeObject),
|
|
17837
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyTypeObject),
|
|
17835
17838
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
17836
17839
|
0, 0,
|
|
17837
17840
|
#else
|
|
17838
|
-
sizeof(PyHeapTypeObject),
|
|
17841
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyHeapTypeObject),
|
|
17839
17842
|
#endif
|
|
17840
|
-
|
|
17843
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(5, 9, __pyx_L1_error)
|
|
17841
17844
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
17842
17845
|
__pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (unlikely(!__pyx_t_1)) __PYX_ERR(6, 1, __pyx_L1_error)
|
|
17843
17846
|
__Pyx_GOTREF(__pyx_t_1);
|
|
17844
|
-
__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe =
|
|
17847
|
+
__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe = __Pyx_ImportType_3_1_3(__pyx_t_1, "a_sync.functools", "cached_property_unsafe",
|
|
17845
17848
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
17846
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
17849
|
+
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),
|
|
17847
17850
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
17848
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
17851
|
+
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),
|
|
17849
17852
|
#else
|
|
17850
|
-
sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
|
|
17853
|
+
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),
|
|
17851
17854
|
#endif
|
|
17852
|
-
|
|
17855
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe) __PYX_ERR(6, 1, __pyx_L1_error)
|
|
17853
17856
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
17854
17857
|
__Pyx_RefNannyFinishContext();
|
|
17855
17858
|
return 0;
|
|
@@ -17879,16 +17882,16 @@ static int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
17879
17882
|
/*--- Function import code ---*/
|
|
17880
17883
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync._kwargs"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
17881
17884
|
__Pyx_GOTREF(__pyx_t_1);
|
|
17882
|
-
if (
|
|
17883
|
-
if (
|
|
17885
|
+
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)
|
|
17886
|
+
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)
|
|
17884
17887
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
17885
17888
|
__pyx_t_1 = PyImport_ImportModule("a_sync.a_sync._helpers"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
17886
17889
|
__Pyx_GOTREF(__pyx_t_1);
|
|
17887
|
-
if (
|
|
17890
|
+
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)
|
|
17888
17891
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
17889
17892
|
__pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
17890
17893
|
__Pyx_GOTREF(__pyx_t_1);
|
|
17891
|
-
if (
|
|
17894
|
+
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)
|
|
17892
17895
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
17893
17896
|
__Pyx_RefNannyFinishContext();
|
|
17894
17897
|
return 0;
|
|
@@ -19771,7 +19774,7 @@ __Pyx_RefNannySetupContext("PyInit_method", 0);
|
|
|
19771
19774
|
* cdef tuple state
|
|
19772
19775
|
* cdef object _dict
|
|
19773
19776
|
*/
|
|
19774
|
-
__Pyx_TraceLine(1,
|
|
19777
|
+
__Pyx_TraceLine(1,0,0,__PYX_ERR(2, 1, __pyx_L1_error))
|
|
19775
19778
|
__pyx_t_9 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_6method_17_ASyncBoundMethod_24__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncBoundMethod___reduce_cytho, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_method, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[32])); if (unlikely(!__pyx_t_9)) __PYX_ERR(2, 1, __pyx_L1_error)
|
|
19776
19779
|
__Pyx_GOTREF(__pyx_t_9);
|
|
19777
19780
|
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_6method__ASyncBoundMethod, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_9) < 0) __PYX_ERR(2, 1, __pyx_L1_error)
|
|
@@ -19783,7 +19786,7 @@ __Pyx_RefNannySetupContext("PyInit_method", 0);
|
|
|
19783
19786
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
19784
19787
|
* __pyx_unpickle__ASyncBoundMethod__set_state(self, __pyx_state)
|
|
19785
19788
|
*/
|
|
19786
|
-
__Pyx_TraceLine(16,
|
|
19789
|
+
__Pyx_TraceLine(16,12,0,__PYX_ERR(2, 16, __pyx_L1_error))
|
|
19787
19790
|
__pyx_t_9 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_6method_17_ASyncBoundMethod_26__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncBoundMethod___setstate_cyt, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_method, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[33])); if (unlikely(!__pyx_t_9)) __PYX_ERR(2, 16, __pyx_L1_error)
|
|
19788
19791
|
__Pyx_GOTREF(__pyx_t_9);
|
|
19789
19792
|
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_6method__ASyncBoundMethod, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_9) < 0) __PYX_ERR(2, 16, __pyx_L1_error)
|
|
@@ -20573,7 +20576,7 @@ __Pyx_RefNannySetupContext("PyInit_method", 0);
|
|
|
20573
20576
|
* cdef object __pyx_PickleError
|
|
20574
20577
|
* cdef object __pyx_result
|
|
20575
20578
|
*/
|
|
20576
|
-
__Pyx_TraceLine(1,
|
|
20579
|
+
__Pyx_TraceLine(1,2,0,__PYX_ERR(2, 1, __pyx_L1_error))
|
|
20577
20580
|
__pyx_t_10 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_6method_1__pyx_unpickle__ASyncBoundMethod, 0, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ASyncBoundMethod, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_method, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[55])); if (unlikely(!__pyx_t_10)) __PYX_ERR(2, 1, __pyx_L1_error)
|
|
20578
20581
|
__Pyx_GOTREF(__pyx_t_10);
|
|
20579
20582
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ASyncBoundMethod, __pyx_t_10) < 0) __PYX_ERR(2, 1, __pyx_L1_error)
|
|
@@ -22859,6 +22862,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
22859
22862
|
changed = 1;
|
|
22860
22863
|
}
|
|
22861
22864
|
#endif // CYTHON_METH_FASTCALL
|
|
22865
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
22862
22866
|
else if (strcmp(memb->name, "__module__") == 0) {
|
|
22863
22867
|
PyObject *descr;
|
|
22864
22868
|
assert(memb->type == T_OBJECT);
|
|
@@ -22873,11 +22877,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
22873
22877
|
}
|
|
22874
22878
|
changed = 1;
|
|
22875
22879
|
}
|
|
22880
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
22876
22881
|
}
|
|
22877
22882
|
memb++;
|
|
22878
22883
|
}
|
|
22879
22884
|
}
|
|
22880
22885
|
#endif // !CYTHON_COMPILING_IN_LIMITED_API
|
|
22886
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
22881
22887
|
slot = spec->slots;
|
|
22882
22888
|
while (slot && slot->slot && slot->slot != Py_tp_getset)
|
|
22883
22889
|
slot++;
|
|
@@ -22909,6 +22915,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
|
22909
22915
|
++getset;
|
|
22910
22916
|
}
|
|
22911
22917
|
}
|
|
22918
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
22912
22919
|
if (changed)
|
|
22913
22920
|
PyType_Modified(type);
|
|
22914
22921
|
#endif // PY_VERSION_HEX > 0x030900B1
|
|
@@ -23041,7 +23048,7 @@ bad:
|
|
|
23041
23048
|
}
|
|
23042
23049
|
|
|
23043
23050
|
/* CommonTypesMetaclass */
|
|
23044
|
-
PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
23051
|
+
static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
23045
23052
|
return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
|
|
23046
23053
|
}
|
|
23047
23054
|
static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
|
|
@@ -23465,7 +23472,7 @@ try_unpack:
|
|
|
23465
23472
|
}
|
|
23466
23473
|
|
|
23467
23474
|
/* PyObjectCallMethod1 */
|
|
23468
|
-
#if !(CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000)
|
|
23475
|
+
#if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)))
|
|
23469
23476
|
static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
|
|
23470
23477
|
PyObject *result = __Pyx_PyObject_CallOneArg(method, arg);
|
|
23471
23478
|
Py_DECREF(method);
|
|
@@ -23473,7 +23480,7 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
|
|
|
23473
23480
|
}
|
|
23474
23481
|
#endif
|
|
23475
23482
|
static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) {
|
|
23476
|
-
#if CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000
|
|
23483
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
23477
23484
|
PyObject *args[2] = {obj, arg};
|
|
23478
23485
|
(void) __Pyx_PyObject_GetMethod;
|
|
23479
23486
|
(void) __Pyx_PyObject_CallOneArg;
|
|
@@ -25287,6 +25294,13 @@ static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr
|
|
|
25287
25294
|
|
|
25288
25295
|
/* PyObjectCallMethod0 */
|
|
25289
25296
|
static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
|
|
25297
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
25298
|
+
PyObject *args[1] = {obj};
|
|
25299
|
+
(void) __Pyx_PyObject_GetMethod;
|
|
25300
|
+
(void) __Pyx_PyObject_CallOneArg;
|
|
25301
|
+
(void) __Pyx_PyObject_CallNoArg;
|
|
25302
|
+
return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
|
|
25303
|
+
#else
|
|
25290
25304
|
PyObject *method = NULL, *result = NULL;
|
|
25291
25305
|
int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
|
|
25292
25306
|
if (likely(is_method)) {
|
|
@@ -25299,6 +25313,7 @@ static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr
|
|
|
25299
25313
|
Py_DECREF(method);
|
|
25300
25314
|
bad:
|
|
25301
25315
|
return result;
|
|
25316
|
+
#endif
|
|
25302
25317
|
}
|
|
25303
25318
|
|
|
25304
25319
|
/* RaiseNeedMoreValuesToUnpack */
|
|
@@ -26053,10 +26068,10 @@ static CYTHON_INLINE int __Pyx_HasAttr(PyObject *o, PyObject *n) {
|
|
|
26053
26068
|
}
|
|
26054
26069
|
|
|
26055
26070
|
/* TypeImport */
|
|
26056
|
-
#ifndef
|
|
26057
|
-
#define
|
|
26058
|
-
static PyTypeObject *
|
|
26059
|
-
size_t size, size_t alignment, enum
|
|
26071
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_3
|
|
26072
|
+
#define __PYX_HAVE_RT_ImportType_3_1_3
|
|
26073
|
+
static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module_name, const char *class_name,
|
|
26074
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_3 check_size)
|
|
26060
26075
|
{
|
|
26061
26076
|
PyObject *result = 0;
|
|
26062
26077
|
Py_ssize_t basicsize;
|
|
@@ -26112,7 +26127,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
26112
26127
|
module_name, class_name, size, basicsize+itemsize);
|
|
26113
26128
|
goto bad;
|
|
26114
26129
|
}
|
|
26115
|
-
if (check_size ==
|
|
26130
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_3 &&
|
|
26116
26131
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
26117
26132
|
PyErr_Format(PyExc_ValueError,
|
|
26118
26133
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -26120,7 +26135,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
26120
26135
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
26121
26136
|
goto bad;
|
|
26122
26137
|
}
|
|
26123
|
-
else if (check_size ==
|
|
26138
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_3 && (size_t)basicsize > size) {
|
|
26124
26139
|
if (PyErr_WarnFormat(NULL, 0,
|
|
26125
26140
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
26126
26141
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -29221,9 +29236,9 @@ bad:
|
|
|
29221
29236
|
}
|
|
29222
29237
|
|
|
29223
29238
|
/* FunctionImport */
|
|
29224
|
-
#ifndef
|
|
29225
|
-
#define
|
|
29226
|
-
static int
|
|
29239
|
+
#ifndef __PYX_HAVE_RT_ImportFunction_3_1_3
|
|
29240
|
+
#define __PYX_HAVE_RT_ImportFunction_3_1_3
|
|
29241
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
|
|
29227
29242
|
PyObject *d = 0;
|
|
29228
29243
|
PyObject *cobj = 0;
|
|
29229
29244
|
union {
|
|
Binary file
|