ez-a-sync 0.32.10__cp38-cp38-macosx_11_0_arm64.whl → 0.32.12__cp38-cp38-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 +1431 -1560
- a_sync/_smart.cpython-38-darwin.so +0 -0
- a_sync/_smart.pyx +28 -16
- a_sync/a_sync/_descriptor.cpython-38-darwin.so +0 -0
- a_sync/a_sync/_flags.cpython-38-darwin.so +0 -0
- a_sync/a_sync/_helpers.cpython-38-darwin.so +0 -0
- a_sync/a_sync/_kwargs.cpython-38-darwin.so +0 -0
- a_sync/a_sync/abstract.cpython-38-darwin.so +0 -0
- a_sync/a_sync/base.cpython-38-darwin.so +0 -0
- a_sync/a_sync/flags.cpython-38-darwin.so +0 -0
- a_sync/a_sync/function.cpython-38-darwin.so +0 -0
- a_sync/a_sync/method.cpython-38-darwin.so +0 -0
- a_sync/a_sync/modifiers/manager.c +614 -937
- a_sync/a_sync/modifiers/manager.cpython-38-darwin.so +0 -0
- a_sync/a_sync/modifiers/manager.pyx +4 -1
- a_sync/a_sync/property.c +250 -244
- a_sync/a_sync/property.cpython-38-darwin.so +0 -0
- a_sync/a_sync/property.pyx +4 -4
- a_sync/async_property/cached.cpython-38-darwin.so +0 -0
- a_sync/async_property/proxy.cpython-38-darwin.so +0 -0
- a_sync/asyncio/as_completed.cpython-38-darwin.so +0 -0
- a_sync/asyncio/create_task.c +735 -579
- a_sync/asyncio/create_task.cpython-38-darwin.so +0 -0
- a_sync/asyncio/create_task.pyx +7 -4
- a_sync/asyncio/gather.cpython-38-darwin.so +0 -0
- a_sync/asyncio/igather.cpython-38-darwin.so +0 -0
- a_sync/asyncio/sleep.cpython-38-darwin.so +0 -0
- a_sync/debugging.cpython-38-darwin.so +0 -0
- a_sync/exceptions.cpython-38-darwin.so +0 -0
- a_sync/functools.cpython-38-darwin.so +0 -0
- a_sync/iter.cpython-38-darwin.so +0 -0
- a_sync/primitives/_debug.cpython-38-darwin.so +0 -0
- a_sync/primitives/_loggable.cpython-38-darwin.so +0 -0
- a_sync/primitives/locks/counter.cpython-38-darwin.so +0 -0
- a_sync/primitives/locks/event.c +426 -428
- a_sync/primitives/locks/event.cpython-38-darwin.so +0 -0
- a_sync/primitives/locks/event.pyx +3 -1
- a_sync/primitives/locks/prio_semaphore.c +2623 -1503
- a_sync/primitives/locks/prio_semaphore.cpython-38-darwin.so +0 -0
- a_sync/primitives/locks/prio_semaphore.pxd +9 -8
- a_sync/primitives/locks/prio_semaphore.pyx +65 -22
- a_sync/primitives/locks/semaphore.c +1048 -1051
- a_sync/primitives/locks/semaphore.cpython-38-darwin.so +0 -0
- a_sync/primitives/locks/semaphore.pyx +4 -2
- a_sync/utils/repr.cpython-38-darwin.so +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/METADATA +1 -1
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/RECORD +50 -50
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/LICENSE.txt +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/WHEEL +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/top_level.txt +0 -0
a_sync/a_sync/property.c
CHANGED
|
@@ -2964,7 +2964,7 @@ static PyObject *__pyx_v_6a_sync_6a_sync_8property_get_event_loop = 0;
|
|
|
2964
2964
|
static PyObject *__pyx_v_6a_sync_6a_sync_8property_iscoroutinefunction = 0;
|
|
2965
2965
|
static PyObject *__pyx_v_6a_sync_6a_sync_8property_Lock = 0;
|
|
2966
2966
|
static PyObject *__pyx_v_6a_sync_6a_sync_8property_Task = 0;
|
|
2967
|
-
static PyObject *
|
|
2967
|
+
static PyObject *__pyx_v_6a_sync_6a_sync_8property_copy = 0;
|
|
2968
2968
|
static PyObject *__pyx_v_6a_sync_6a_sync_8property_partial = 0;
|
|
2969
2969
|
__PYX_EXTERN_C DL_EXPORT(PyObject) *logger;
|
|
2970
2970
|
static PyObject *__pyx_v_6a_sync_6a_sync_8property__logger_is_enabled = 0;
|
|
@@ -3064,6 +3064,7 @@ static const char __pyx_k_Unpack[] = "Unpack";
|
|
|
3064
3064
|
static const char __pyx_k_a_sync[] = "a_sync";
|
|
3065
3065
|
static const char __pyx_k_cached[] = "cached";
|
|
3066
3066
|
static const char __pyx_k_config[] = "config";
|
|
3067
|
+
static const char __pyx_k_copy_2[] = "_copy";
|
|
3067
3068
|
static const char __pyx_k_enable[] = "enable";
|
|
3068
3069
|
static const char __pyx_k_format[] = "format";
|
|
3069
3070
|
static const char __pyx_k_import[] = "__import__";
|
|
@@ -3090,7 +3091,6 @@ static const char __pyx_k_wrapped[] = "__wrapped__";
|
|
|
3090
3091
|
static const char __pyx_k_Callable[] = "Callable";
|
|
3091
3092
|
static const char __pyx_k_KeyError[] = "KeyError";
|
|
3092
3093
|
static const char __pyx_k_Optional[] = "Optional";
|
|
3093
|
-
static const char __pyx_k_deepcopy[] = "deepcopy";
|
|
3094
3094
|
static const char __pyx_k_executor[] = "executor";
|
|
3095
3095
|
static const char __pyx_k_function[] = "function";
|
|
3096
3096
|
static const char __pyx_k_get_lock[] = "get_lock";
|
|
@@ -3544,10 +3544,10 @@ typedef struct {
|
|
|
3544
3544
|
PyObject *__pyx_n_s_concurrency;
|
|
3545
3545
|
PyObject *__pyx_n_s_config;
|
|
3546
3546
|
PyObject *__pyx_n_s_copy;
|
|
3547
|
+
PyObject *__pyx_n_s_copy_2;
|
|
3547
3548
|
PyObject *__pyx_n_s_debug;
|
|
3548
3549
|
PyObject *__pyx_n_s_debug_logs;
|
|
3549
3550
|
PyObject *__pyx_n_s_decorator;
|
|
3550
|
-
PyObject *__pyx_n_s_deepcopy;
|
|
3551
3551
|
PyObject *__pyx_n_s_default;
|
|
3552
3552
|
PyObject *__pyx_n_u_default;
|
|
3553
3553
|
PyObject *__pyx_n_u_deleter;
|
|
@@ -3947,10 +3947,10 @@ static int __pyx_m_clear(PyObject *m) {
|
|
|
3947
3947
|
Py_CLEAR(clear_module_state->__pyx_n_s_concurrency);
|
|
3948
3948
|
Py_CLEAR(clear_module_state->__pyx_n_s_config);
|
|
3949
3949
|
Py_CLEAR(clear_module_state->__pyx_n_s_copy);
|
|
3950
|
+
Py_CLEAR(clear_module_state->__pyx_n_s_copy_2);
|
|
3950
3951
|
Py_CLEAR(clear_module_state->__pyx_n_s_debug);
|
|
3951
3952
|
Py_CLEAR(clear_module_state->__pyx_n_s_debug_logs);
|
|
3952
3953
|
Py_CLEAR(clear_module_state->__pyx_n_s_decorator);
|
|
3953
|
-
Py_CLEAR(clear_module_state->__pyx_n_s_deepcopy);
|
|
3954
3954
|
Py_CLEAR(clear_module_state->__pyx_n_s_default);
|
|
3955
3955
|
Py_CLEAR(clear_module_state->__pyx_n_u_default);
|
|
3956
3956
|
Py_CLEAR(clear_module_state->__pyx_n_u_deleter);
|
|
@@ -4328,10 +4328,10 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
|
|
|
4328
4328
|
Py_VISIT(traverse_module_state->__pyx_n_s_concurrency);
|
|
4329
4329
|
Py_VISIT(traverse_module_state->__pyx_n_s_config);
|
|
4330
4330
|
Py_VISIT(traverse_module_state->__pyx_n_s_copy);
|
|
4331
|
+
Py_VISIT(traverse_module_state->__pyx_n_s_copy_2);
|
|
4331
4332
|
Py_VISIT(traverse_module_state->__pyx_n_s_debug);
|
|
4332
4333
|
Py_VISIT(traverse_module_state->__pyx_n_s_debug_logs);
|
|
4333
4334
|
Py_VISIT(traverse_module_state->__pyx_n_s_decorator);
|
|
4334
|
-
Py_VISIT(traverse_module_state->__pyx_n_s_deepcopy);
|
|
4335
4335
|
Py_VISIT(traverse_module_state->__pyx_n_s_default);
|
|
4336
4336
|
Py_VISIT(traverse_module_state->__pyx_n_u_default);
|
|
4337
4337
|
Py_VISIT(traverse_module_state->__pyx_n_u_deleter);
|
|
@@ -4735,10 +4735,10 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
|
|
|
4735
4735
|
#define __pyx_n_s_concurrency __pyx_mstate_global->__pyx_n_s_concurrency
|
|
4736
4736
|
#define __pyx_n_s_config __pyx_mstate_global->__pyx_n_s_config
|
|
4737
4737
|
#define __pyx_n_s_copy __pyx_mstate_global->__pyx_n_s_copy
|
|
4738
|
+
#define __pyx_n_s_copy_2 __pyx_mstate_global->__pyx_n_s_copy_2
|
|
4738
4739
|
#define __pyx_n_s_debug __pyx_mstate_global->__pyx_n_s_debug
|
|
4739
4740
|
#define __pyx_n_s_debug_logs __pyx_mstate_global->__pyx_n_s_debug_logs
|
|
4740
4741
|
#define __pyx_n_s_decorator __pyx_mstate_global->__pyx_n_s_decorator
|
|
4741
|
-
#define __pyx_n_s_deepcopy __pyx_mstate_global->__pyx_n_s_deepcopy
|
|
4742
4742
|
#define __pyx_n_s_default __pyx_mstate_global->__pyx_n_s_default
|
|
4743
4743
|
#define __pyx_n_u_default __pyx_mstate_global->__pyx_n_u_default
|
|
4744
4744
|
#define __pyx_n_u_deleter __pyx_mstate_global->__pyx_n_u_deleter
|
|
@@ -10708,7 +10708,7 @@ static PyObject *__pyx_gb_6a_sync_6a_sync_8property_29ASyncCachedPropertyDescrip
|
|
|
10708
10708
|
* instance_context = {"property": self, "instance": instance}
|
|
10709
10709
|
* if e.args and e.args[-1] != instance_context: # <<<<<<<<<<<<<<
|
|
10710
10710
|
* e.args = *e.args, instance_context
|
|
10711
|
-
* raise
|
|
10711
|
+
* raise copy(e).with_traceback(e.__traceback__)
|
|
10712
10712
|
*/
|
|
10713
10713
|
__Pyx_TraceLine(503,0,__PYX_ERR(0, 503, __pyx_L17_error))
|
|
10714
10714
|
__pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_cur_scope->__pyx_v_e, __pyx_n_s_args); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 503, __pyx_L17_error)
|
|
@@ -10737,7 +10737,7 @@ static PyObject *__pyx_gb_6a_sync_6a_sync_8property_29ASyncCachedPropertyDescrip
|
|
|
10737
10737
|
* instance_context = {"property": self, "instance": instance}
|
|
10738
10738
|
* if e.args and e.args[-1] != instance_context:
|
|
10739
10739
|
* e.args = *e.args, instance_context # <<<<<<<<<<<<<<
|
|
10740
|
-
* raise
|
|
10740
|
+
* raise copy(e).with_traceback(e.__traceback__)
|
|
10741
10741
|
*
|
|
10742
10742
|
*/
|
|
10743
10743
|
__Pyx_TraceLine(504,0,__PYX_ERR(0, 504, __pyx_L17_error))
|
|
@@ -10761,20 +10761,20 @@ static PyObject *__pyx_gb_6a_sync_6a_sync_8property_29ASyncCachedPropertyDescrip
|
|
|
10761
10761
|
* instance_context = {"property": self, "instance": instance}
|
|
10762
10762
|
* if e.args and e.args[-1] != instance_context: # <<<<<<<<<<<<<<
|
|
10763
10763
|
* e.args = *e.args, instance_context
|
|
10764
|
-
* raise
|
|
10764
|
+
* raise copy(e).with_traceback(e.__traceback__)
|
|
10765
10765
|
*/
|
|
10766
10766
|
}
|
|
10767
10767
|
|
|
10768
10768
|
/* "a_sync/a_sync/property.pyx":505
|
|
10769
10769
|
* if e.args and e.args[-1] != instance_context:
|
|
10770
10770
|
* e.args = *e.args, instance_context
|
|
10771
|
-
* raise
|
|
10771
|
+
* raise copy(e).with_traceback(e.__traceback__) # <<<<<<<<<<<<<<
|
|
10772
10772
|
*
|
|
10773
10773
|
* if self._fset is not None:
|
|
10774
10774
|
*/
|
|
10775
10775
|
__Pyx_TraceLine(505,0,__PYX_ERR(0, 505, __pyx_L17_error))
|
|
10776
|
-
__Pyx_INCREF(
|
|
10777
|
-
__pyx_t_13 =
|
|
10776
|
+
__Pyx_INCREF(__pyx_v_6a_sync_6a_sync_8property_copy);
|
|
10777
|
+
__pyx_t_13 = __pyx_v_6a_sync_6a_sync_8property_copy; __pyx_t_14 = NULL;
|
|
10778
10778
|
__pyx_t_4 = 0;
|
|
10779
10779
|
#if CYTHON_UNPACK_METHODS
|
|
10780
10780
|
if (unlikely(PyMethod_Check(__pyx_t_13))) {
|
|
@@ -10894,7 +10894,7 @@ static PyObject *__pyx_gb_6a_sync_6a_sync_8property_29ASyncCachedPropertyDescrip
|
|
|
10894
10894
|
}
|
|
10895
10895
|
|
|
10896
10896
|
/* "a_sync/a_sync/property.pyx":507
|
|
10897
|
-
* raise
|
|
10897
|
+
* raise copy(e).with_traceback(e.__traceback__)
|
|
10898
10898
|
*
|
|
10899
10899
|
* if self._fset is not None: # <<<<<<<<<<<<<<
|
|
10900
10900
|
* self._fset(instance, value)
|
|
@@ -10944,7 +10944,7 @@ static PyObject *__pyx_gb_6a_sync_6a_sync_8property_29ASyncCachedPropertyDescrip
|
|
|
10944
10944
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
10945
10945
|
|
|
10946
10946
|
/* "a_sync/a_sync/property.pyx":507
|
|
10947
|
-
* raise
|
|
10947
|
+
* raise copy(e).with_traceback(e.__traceback__)
|
|
10948
10948
|
*
|
|
10949
10949
|
* if self._fset is not None: # <<<<<<<<<<<<<<
|
|
10950
10950
|
* self._fset(instance, value)
|
|
@@ -16200,10 +16200,10 @@ static int __Pyx_CreateStringTabAndInitStrings(void) {
|
|
|
16200
16200
|
{&__pyx_n_s_concurrency, __pyx_k_concurrency, sizeof(__pyx_k_concurrency), 0, 0, 1, 1},
|
|
16201
16201
|
{&__pyx_n_s_config, __pyx_k_config, sizeof(__pyx_k_config), 0, 0, 1, 1},
|
|
16202
16202
|
{&__pyx_n_s_copy, __pyx_k_copy, sizeof(__pyx_k_copy), 0, 0, 1, 1},
|
|
16203
|
+
{&__pyx_n_s_copy_2, __pyx_k_copy_2, sizeof(__pyx_k_copy_2), 0, 0, 1, 1},
|
|
16203
16204
|
{&__pyx_n_s_debug, __pyx_k_debug, sizeof(__pyx_k_debug), 0, 0, 1, 1},
|
|
16204
16205
|
{&__pyx_n_s_debug_logs, __pyx_k_debug_logs, sizeof(__pyx_k_debug_logs), 0, 0, 1, 1},
|
|
16205
16206
|
{&__pyx_n_s_decorator, __pyx_k_decorator, sizeof(__pyx_k_decorator), 0, 0, 1, 1},
|
|
16206
|
-
{&__pyx_n_s_deepcopy, __pyx_k_deepcopy, sizeof(__pyx_k_deepcopy), 0, 0, 1, 1},
|
|
16207
16207
|
{&__pyx_n_s_default, __pyx_k_default, sizeof(__pyx_k_default), 0, 0, 1, 1},
|
|
16208
16208
|
{&__pyx_n_u_default, __pyx_k_default, sizeof(__pyx_k_default), 0, 1, 0, 1},
|
|
16209
16209
|
{&__pyx_n_u_deleter, __pyx_k_deleter, sizeof(__pyx_k_deleter), 0, 1, 0, 1},
|
|
@@ -16842,7 +16842,7 @@ static int __Pyx_modinit_global_init_code(void) {
|
|
|
16842
16842
|
__pyx_v_6a_sync_6a_sync_8property_iscoroutinefunction = Py_None; Py_INCREF(Py_None);
|
|
16843
16843
|
__pyx_v_6a_sync_6a_sync_8property_Lock = Py_None; Py_INCREF(Py_None);
|
|
16844
16844
|
__pyx_v_6a_sync_6a_sync_8property_Task = Py_None; Py_INCREF(Py_None);
|
|
16845
|
-
|
|
16845
|
+
__pyx_v_6a_sync_6a_sync_8property_copy = Py_None; Py_INCREF(Py_None);
|
|
16846
16846
|
__pyx_v_6a_sync_6a_sync_8property_partial = Py_None; Py_INCREF(Py_None);
|
|
16847
16847
|
logger = Py_None; Py_INCREF(Py_None);
|
|
16848
16848
|
__pyx_v_6a_sync_6a_sync_8property__logger_is_enabled = Py_None; Py_INCREF(Py_None);
|
|
@@ -17335,8 +17335,8 @@ if (!__Pyx_RefNanny) {
|
|
|
17335
17335
|
|
|
17336
17336
|
/* "a_sync/a_sync/property.pyx":1
|
|
17337
17337
|
* import asyncio # <<<<<<<<<<<<<<
|
|
17338
|
-
* import copy
|
|
17339
17338
|
* import functools
|
|
17339
|
+
* import typing
|
|
17340
17340
|
*/
|
|
17341
17341
|
__Pyx_TraceLine(1,0,__PYX_ERR(0, 1, __pyx_L1_error))
|
|
17342
17342
|
__pyx_t_2 = __Pyx_patch_asyncio(__Pyx_ImportDottedModule(__pyx_n_s_asyncio, NULL)); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
@@ -17346,134 +17346,143 @@ if (!__Pyx_RefNanny) {
|
|
|
17346
17346
|
|
|
17347
17347
|
/* "a_sync/a_sync/property.pyx":2
|
|
17348
17348
|
* import asyncio
|
|
17349
|
-
* import
|
|
17350
|
-
* import functools
|
|
17349
|
+
* import functools # <<<<<<<<<<<<<<
|
|
17351
17350
|
* import typing
|
|
17351
|
+
* from copy import copy as _copy
|
|
17352
17352
|
*/
|
|
17353
17353
|
__Pyx_TraceLine(2,0,__PYX_ERR(0, 2, __pyx_L1_error))
|
|
17354
|
-
__pyx_t_2 = __Pyx_ImportDottedModule(
|
|
17354
|
+
__pyx_t_2 = __Pyx_ImportDottedModule(__pyx_n_s_functools, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 2, __pyx_L1_error)
|
|
17355
17355
|
__Pyx_GOTREF(__pyx_t_2);
|
|
17356
|
-
if (PyDict_SetItem(__pyx_d,
|
|
17356
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_functools, __pyx_t_2) < 0) __PYX_ERR(0, 2, __pyx_L1_error)
|
|
17357
17357
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17358
17358
|
|
|
17359
17359
|
/* "a_sync/a_sync/property.pyx":3
|
|
17360
17360
|
* import asyncio
|
|
17361
|
-
* import
|
|
17362
|
-
* import
|
|
17363
|
-
* import
|
|
17361
|
+
* import functools
|
|
17362
|
+
* import typing # <<<<<<<<<<<<<<
|
|
17363
|
+
* from copy import copy as _copy
|
|
17364
17364
|
* from logging import getLogger
|
|
17365
17365
|
*/
|
|
17366
17366
|
__Pyx_TraceLine(3,0,__PYX_ERR(0, 3, __pyx_L1_error))
|
|
17367
|
-
__pyx_t_2 = __Pyx_ImportDottedModule(
|
|
17367
|
+
__pyx_t_2 = __Pyx_ImportDottedModule(__pyx_n_s_typing, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 3, __pyx_L1_error)
|
|
17368
17368
|
__Pyx_GOTREF(__pyx_t_2);
|
|
17369
|
-
if (PyDict_SetItem(__pyx_d,
|
|
17369
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_typing, __pyx_t_2) < 0) __PYX_ERR(0, 3, __pyx_L1_error)
|
|
17370
17370
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17371
17371
|
|
|
17372
17372
|
/* "a_sync/a_sync/property.pyx":4
|
|
17373
|
-
* import copy
|
|
17374
17373
|
* import functools
|
|
17375
|
-
* import typing
|
|
17374
|
+
* import typing
|
|
17375
|
+
* from copy import copy as _copy # <<<<<<<<<<<<<<
|
|
17376
17376
|
* from logging import getLogger
|
|
17377
17377
|
* from typing import Any, Awaitable, Callable, Generator, Optional, Tuple, Type, Union
|
|
17378
17378
|
*/
|
|
17379
17379
|
__Pyx_TraceLine(4,0,__PYX_ERR(0, 4, __pyx_L1_error))
|
|
17380
|
-
__pyx_t_2 =
|
|
17380
|
+
__pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 4, __pyx_L1_error)
|
|
17381
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17382
|
+
__Pyx_INCREF(__pyx_n_s_copy);
|
|
17383
|
+
__Pyx_GIVEREF(__pyx_n_s_copy);
|
|
17384
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_copy)) __PYX_ERR(0, 4, __pyx_L1_error);
|
|
17385
|
+
__pyx_t_3 = __Pyx_Import(__pyx_n_s_copy, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 4, __pyx_L1_error)
|
|
17386
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17387
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17388
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_copy); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 4, __pyx_L1_error)
|
|
17381
17389
|
__Pyx_GOTREF(__pyx_t_2);
|
|
17382
|
-
if (PyDict_SetItem(__pyx_d,
|
|
17390
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_copy_2, __pyx_t_2) < 0) __PYX_ERR(0, 4, __pyx_L1_error)
|
|
17383
17391
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17392
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17384
17393
|
|
|
17385
17394
|
/* "a_sync/a_sync/property.pyx":5
|
|
17386
|
-
* import functools
|
|
17387
17395
|
* import typing
|
|
17396
|
+
* from copy import copy as _copy
|
|
17388
17397
|
* from logging import getLogger # <<<<<<<<<<<<<<
|
|
17389
17398
|
* from typing import Any, Awaitable, Callable, Generator, Optional, Tuple, Type, Union
|
|
17390
17399
|
*
|
|
17391
17400
|
*/
|
|
17392
17401
|
__Pyx_TraceLine(5,0,__PYX_ERR(0, 5, __pyx_L1_error))
|
|
17393
|
-
|
|
17394
|
-
__Pyx_GOTREF(
|
|
17402
|
+
__pyx_t_3 = PyList_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
17403
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17395
17404
|
__Pyx_INCREF(__pyx_n_s_getLogger);
|
|
17396
17405
|
__Pyx_GIVEREF(__pyx_n_s_getLogger);
|
|
17397
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17398
|
-
|
|
17399
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17400
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17401
|
-
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_getLogger); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
17406
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s_getLogger)) __PYX_ERR(0, 5, __pyx_L1_error);
|
|
17407
|
+
__pyx_t_2 = __Pyx_Import(__pyx_n_s_logging, __pyx_t_3, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
17402
17408
|
__Pyx_GOTREF(__pyx_t_2);
|
|
17403
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_getLogger, __pyx_t_2) < 0) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
17404
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17405
17409
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17410
|
+
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_getLogger); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
17411
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17412
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_getLogger, __pyx_t_3) < 0) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
17413
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17414
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17406
17415
|
|
|
17407
17416
|
/* "a_sync/a_sync/property.pyx":6
|
|
17408
|
-
* import
|
|
17417
|
+
* from copy import copy as _copy
|
|
17409
17418
|
* from logging import getLogger
|
|
17410
17419
|
* from typing import Any, Awaitable, Callable, Generator, Optional, Tuple, Type, Union # <<<<<<<<<<<<<<
|
|
17411
17420
|
*
|
|
17412
17421
|
* import async_property as ap # type: ignore [import]
|
|
17413
17422
|
*/
|
|
17414
17423
|
__Pyx_TraceLine(6,0,__PYX_ERR(0, 6, __pyx_L1_error))
|
|
17415
|
-
|
|
17416
|
-
__Pyx_GOTREF(
|
|
17424
|
+
__pyx_t_2 = PyList_New(8); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17425
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17417
17426
|
__Pyx_INCREF(__pyx_n_s_Any);
|
|
17418
17427
|
__Pyx_GIVEREF(__pyx_n_s_Any);
|
|
17419
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17428
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_Any)) __PYX_ERR(0, 6, __pyx_L1_error);
|
|
17420
17429
|
__Pyx_INCREF(__pyx_n_s_Awaitable);
|
|
17421
17430
|
__Pyx_GIVEREF(__pyx_n_s_Awaitable);
|
|
17422
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17431
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 1, __pyx_n_s_Awaitable)) __PYX_ERR(0, 6, __pyx_L1_error);
|
|
17423
17432
|
__Pyx_INCREF(__pyx_n_s_Callable);
|
|
17424
17433
|
__Pyx_GIVEREF(__pyx_n_s_Callable);
|
|
17425
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17434
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 2, __pyx_n_s_Callable)) __PYX_ERR(0, 6, __pyx_L1_error);
|
|
17426
17435
|
__Pyx_INCREF(__pyx_n_s_Generator);
|
|
17427
17436
|
__Pyx_GIVEREF(__pyx_n_s_Generator);
|
|
17428
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17437
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 3, __pyx_n_s_Generator)) __PYX_ERR(0, 6, __pyx_L1_error);
|
|
17429
17438
|
__Pyx_INCREF(__pyx_n_s_Optional);
|
|
17430
17439
|
__Pyx_GIVEREF(__pyx_n_s_Optional);
|
|
17431
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17440
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 4, __pyx_n_s_Optional)) __PYX_ERR(0, 6, __pyx_L1_error);
|
|
17432
17441
|
__Pyx_INCREF(__pyx_n_s_Tuple);
|
|
17433
17442
|
__Pyx_GIVEREF(__pyx_n_s_Tuple);
|
|
17434
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17443
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 5, __pyx_n_s_Tuple)) __PYX_ERR(0, 6, __pyx_L1_error);
|
|
17435
17444
|
__Pyx_INCREF(__pyx_n_s_Type);
|
|
17436
17445
|
__Pyx_GIVEREF(__pyx_n_s_Type);
|
|
17437
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17446
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 6, __pyx_n_s_Type)) __PYX_ERR(0, 6, __pyx_L1_error);
|
|
17438
17447
|
__Pyx_INCREF(__pyx_n_s_Union);
|
|
17439
17448
|
__Pyx_GIVEREF(__pyx_n_s_Union);
|
|
17440
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17441
|
-
|
|
17442
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17443
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17444
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Any); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17445
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17446
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Any, __pyx_t_3) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17447
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17448
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Awaitable); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17449
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17450
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Awaitable, __pyx_t_3) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17451
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17452
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Callable); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17453
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17454
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Callable, __pyx_t_3) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17455
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17456
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Generator); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17457
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17458
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Generator, __pyx_t_3) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17459
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17460
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Optional); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17461
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17462
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Optional, __pyx_t_3) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17463
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17464
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Tuple); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17449
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 7, __pyx_n_s_Union)) __PYX_ERR(0, 6, __pyx_L1_error);
|
|
17450
|
+
__pyx_t_3 = __Pyx_Import(__pyx_n_s_typing, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17465
17451
|
__Pyx_GOTREF(__pyx_t_3);
|
|
17466
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Tuple, __pyx_t_3) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17467
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17468
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Type); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17469
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17470
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Type, __pyx_t_3) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17471
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17472
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Union); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17473
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17474
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Union, __pyx_t_3) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17475
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17476
17452
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17453
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Any); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17454
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17455
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Any, __pyx_t_2) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17456
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17457
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Awaitable); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17458
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17459
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Awaitable, __pyx_t_2) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17460
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17461
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Callable); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17462
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17463
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Callable, __pyx_t_2) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17464
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17465
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Generator); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17466
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17467
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Generator, __pyx_t_2) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17468
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17469
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Optional); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17470
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17471
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Optional, __pyx_t_2) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17472
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17473
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Tuple); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17474
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17475
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Tuple, __pyx_t_2) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17476
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17477
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Type); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17478
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17479
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Type, __pyx_t_2) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17480
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17481
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Union); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17482
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17483
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Union, __pyx_t_2) < 0) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
17484
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17485
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17477
17486
|
|
|
17478
17487
|
/* "a_sync/a_sync/property.pyx":8
|
|
17479
17488
|
* from typing import Any, Awaitable, Callable, Generator, Optional, Tuple, Type, Union
|
|
@@ -17483,10 +17492,10 @@ if (!__Pyx_RefNanny) {
|
|
|
17483
17492
|
*
|
|
17484
17493
|
*/
|
|
17485
17494
|
__Pyx_TraceLine(8,0,__PYX_ERR(0, 8, __pyx_L1_error))
|
|
17486
|
-
|
|
17487
|
-
__Pyx_GOTREF(
|
|
17488
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_ap,
|
|
17489
|
-
__Pyx_DECREF(
|
|
17495
|
+
__pyx_t_3 = __Pyx_ImportDottedModule(__pyx_n_s_async_property, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 8, __pyx_L1_error)
|
|
17496
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17497
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_ap, __pyx_t_3) < 0) __PYX_ERR(0, 8, __pyx_L1_error)
|
|
17498
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17490
17499
|
|
|
17491
17500
|
/* "a_sync/a_sync/property.pyx":9
|
|
17492
17501
|
*
|
|
@@ -17496,33 +17505,33 @@ if (!__Pyx_RefNanny) {
|
|
|
17496
17505
|
* from a_sync._smart cimport shield
|
|
17497
17506
|
*/
|
|
17498
17507
|
__Pyx_TraceLine(9,0,__PYX_ERR(0, 9, __pyx_L1_error))
|
|
17499
|
-
|
|
17500
|
-
__Pyx_GOTREF(
|
|
17508
|
+
__pyx_t_3 = PyList_New(3); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17509
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17501
17510
|
__Pyx_INCREF(__pyx_n_s_Concatenate);
|
|
17502
17511
|
__Pyx_GIVEREF(__pyx_n_s_Concatenate);
|
|
17503
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17512
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s_Concatenate)) __PYX_ERR(0, 9, __pyx_L1_error);
|
|
17504
17513
|
__Pyx_INCREF(__pyx_n_s_Self);
|
|
17505
17514
|
__Pyx_GIVEREF(__pyx_n_s_Self);
|
|
17506
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17515
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_3, 1, __pyx_n_s_Self)) __PYX_ERR(0, 9, __pyx_L1_error);
|
|
17507
17516
|
__Pyx_INCREF(__pyx_n_s_Unpack);
|
|
17508
17517
|
__Pyx_GIVEREF(__pyx_n_s_Unpack);
|
|
17509
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17510
|
-
|
|
17511
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17512
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17513
|
-
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Concatenate); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17518
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_3, 2, __pyx_n_s_Unpack)) __PYX_ERR(0, 9, __pyx_L1_error);
|
|
17519
|
+
__pyx_t_2 = __Pyx_Import(__pyx_n_s_typing_extensions, __pyx_t_3, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17514
17520
|
__Pyx_GOTREF(__pyx_t_2);
|
|
17515
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Concatenate, __pyx_t_2) < 0) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17516
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17517
|
-
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Self); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17518
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17519
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Self, __pyx_t_2) < 0) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17520
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17521
|
-
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_Unpack); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17522
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17523
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Unpack, __pyx_t_2) < 0) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17524
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17525
17521
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17522
|
+
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Concatenate); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17523
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17524
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Concatenate, __pyx_t_3) < 0) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17525
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17526
|
+
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Self); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17527
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17528
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Self, __pyx_t_3) < 0) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17529
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17530
|
+
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Unpack); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17531
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17532
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_Unpack, __pyx_t_3) < 0) __PYX_ERR(0, 9, __pyx_L1_error)
|
|
17533
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17534
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17526
17535
|
|
|
17527
17536
|
/* "a_sync/a_sync/property.pyx":12
|
|
17528
17537
|
*
|
|
@@ -17532,75 +17541,75 @@ if (!__Pyx_RefNanny) {
|
|
|
17532
17541
|
* from a_sync.a_sync import _descriptor, config, function, method
|
|
17533
17542
|
*/
|
|
17534
17543
|
__Pyx_TraceLine(12,0,__PYX_ERR(0, 12, __pyx_L1_error))
|
|
17535
|
-
|
|
17536
|
-
__Pyx_GOTREF(
|
|
17544
|
+
__pyx_t_2 = PyList_New(9); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17545
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17537
17546
|
__Pyx_INCREF(__pyx_n_s_AnyFn);
|
|
17538
17547
|
__Pyx_GIVEREF(__pyx_n_s_AnyFn);
|
|
17539
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17548
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_AnyFn)) __PYX_ERR(0, 12, __pyx_L1_error);
|
|
17540
17549
|
__Pyx_INCREF(__pyx_n_s_AnyGetterFunction);
|
|
17541
17550
|
__Pyx_GIVEREF(__pyx_n_s_AnyGetterFunction);
|
|
17542
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17551
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 1, __pyx_n_s_AnyGetterFunction)) __PYX_ERR(0, 12, __pyx_L1_error);
|
|
17543
17552
|
__Pyx_INCREF(__pyx_n_s_AnyIterable);
|
|
17544
17553
|
__Pyx_GIVEREF(__pyx_n_s_AnyIterable);
|
|
17545
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17554
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 2, __pyx_n_s_AnyIterable)) __PYX_ERR(0, 12, __pyx_L1_error);
|
|
17546
17555
|
__Pyx_INCREF(__pyx_n_s_AsyncGetterFunction);
|
|
17547
17556
|
__Pyx_GIVEREF(__pyx_n_s_AsyncGetterFunction);
|
|
17548
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17557
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 3, __pyx_n_s_AsyncGetterFunction)) __PYX_ERR(0, 12, __pyx_L1_error);
|
|
17549
17558
|
__Pyx_INCREF(__pyx_n_s_DefaultMode);
|
|
17550
17559
|
__Pyx_GIVEREF(__pyx_n_s_DefaultMode);
|
|
17551
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17560
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 4, __pyx_n_s_DefaultMode)) __PYX_ERR(0, 12, __pyx_L1_error);
|
|
17552
17561
|
__Pyx_INCREF(__pyx_n_s_I);
|
|
17553
17562
|
__Pyx_GIVEREF(__pyx_n_s_I);
|
|
17554
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17563
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 5, __pyx_n_s_I)) __PYX_ERR(0, 12, __pyx_L1_error);
|
|
17555
17564
|
__Pyx_INCREF(__pyx_n_s_ModifierKwargs);
|
|
17556
17565
|
__Pyx_GIVEREF(__pyx_n_s_ModifierKwargs);
|
|
17557
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17566
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 6, __pyx_n_s_ModifierKwargs)) __PYX_ERR(0, 12, __pyx_L1_error);
|
|
17558
17567
|
__Pyx_INCREF(__pyx_n_s_P);
|
|
17559
17568
|
__Pyx_GIVEREF(__pyx_n_s_P);
|
|
17560
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17569
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 7, __pyx_n_s_P)) __PYX_ERR(0, 12, __pyx_L1_error);
|
|
17561
17570
|
__Pyx_INCREF(__pyx_n_s_T);
|
|
17562
17571
|
__Pyx_GIVEREF(__pyx_n_s_T);
|
|
17563
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17564
|
-
|
|
17565
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17566
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17567
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_AnyFn); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17568
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17569
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_AnyFn, __pyx_t_3) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17570
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17571
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_AnyGetterFunction); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17572
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17573
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_AnyGetterFunction, __pyx_t_3) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17574
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17575
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_AnyIterable); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17576
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17577
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_AnyIterable, __pyx_t_3) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17578
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17579
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_AsyncGetterFunction); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17580
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17581
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_AsyncGetterFunction, __pyx_t_3) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17582
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17583
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_DefaultMode); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17584
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17585
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_DefaultMode, __pyx_t_3) < 0) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
17586
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17587
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_I); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17588
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17589
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_I, __pyx_t_3) < 0) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
17590
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17591
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_ModifierKwargs); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17592
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17593
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_ModifierKwargs, __pyx_t_3) < 0) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
17594
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17595
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_P); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17572
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 8, __pyx_n_s_T)) __PYX_ERR(0, 12, __pyx_L1_error);
|
|
17573
|
+
__pyx_t_3 = __Pyx_Import(__pyx_n_s_a_sync__typing, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17596
17574
|
__Pyx_GOTREF(__pyx_t_3);
|
|
17597
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_P, __pyx_t_3) < 0) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
17598
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17599
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_T); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17600
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17601
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_T, __pyx_t_3) < 0) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
17602
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17603
17575
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17576
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_AnyFn); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17577
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17578
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_AnyFn, __pyx_t_2) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17579
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17580
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_AnyGetterFunction); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17581
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17582
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_AnyGetterFunction, __pyx_t_2) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17583
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17584
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_AnyIterable); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17585
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17586
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_AnyIterable, __pyx_t_2) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17587
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17588
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_AsyncGetterFunction); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17589
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17590
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_AsyncGetterFunction, __pyx_t_2) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17591
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17592
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_DefaultMode); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17593
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17594
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_DefaultMode, __pyx_t_2) < 0) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
17595
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17596
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_I); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17597
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17598
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_I, __pyx_t_2) < 0) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
17599
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17600
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_ModifierKwargs); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17601
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17602
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_ModifierKwargs, __pyx_t_2) < 0) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
17603
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17604
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_P); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17605
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17606
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_P, __pyx_t_2) < 0) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
17607
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17608
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_T); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
17609
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17610
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_T, __pyx_t_2) < 0) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
17611
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17612
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17604
17613
|
|
|
17605
17614
|
/* "a_sync/a_sync/property.pyx":14
|
|
17606
17615
|
* from a_sync._typing import (AnyFn, AnyGetterFunction, AnyIterable, AsyncGetterFunction,
|
|
@@ -17610,40 +17619,40 @@ if (!__Pyx_RefNanny) {
|
|
|
17610
17619
|
*
|
|
17611
17620
|
*/
|
|
17612
17621
|
__Pyx_TraceLine(14,0,__PYX_ERR(0, 14, __pyx_L1_error))
|
|
17613
|
-
|
|
17614
|
-
__Pyx_GOTREF(
|
|
17622
|
+
__pyx_t_3 = PyList_New(4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17623
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17615
17624
|
__Pyx_INCREF(__pyx_n_s_descriptor);
|
|
17616
17625
|
__Pyx_GIVEREF(__pyx_n_s_descriptor);
|
|
17617
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17626
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_3, 0, __pyx_n_s_descriptor)) __PYX_ERR(0, 14, __pyx_L1_error);
|
|
17618
17627
|
__Pyx_INCREF(__pyx_n_s_config);
|
|
17619
17628
|
__Pyx_GIVEREF(__pyx_n_s_config);
|
|
17620
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17629
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_3, 1, __pyx_n_s_config)) __PYX_ERR(0, 14, __pyx_L1_error);
|
|
17621
17630
|
__Pyx_INCREF(__pyx_n_s_function);
|
|
17622
17631
|
__Pyx_GIVEREF(__pyx_n_s_function);
|
|
17623
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17632
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_3, 2, __pyx_n_s_function)) __PYX_ERR(0, 14, __pyx_L1_error);
|
|
17624
17633
|
__Pyx_INCREF(__pyx_n_s_method);
|
|
17625
17634
|
__Pyx_GIVEREF(__pyx_n_s_method);
|
|
17626
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17627
|
-
|
|
17628
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17629
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17630
|
-
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_descriptor); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17631
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17632
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_descriptor, __pyx_t_2) < 0) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17633
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17634
|
-
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_config); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17635
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17636
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_config, __pyx_t_2) < 0) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17637
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17638
|
-
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_function); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17639
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17640
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_function, __pyx_t_2) < 0) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17641
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17642
|
-
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_method); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17635
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_3, 3, __pyx_n_s_method)) __PYX_ERR(0, 14, __pyx_L1_error);
|
|
17636
|
+
__pyx_t_2 = __Pyx_Import(__pyx_n_s_a_sync_a_sync, __pyx_t_3, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17643
17637
|
__Pyx_GOTREF(__pyx_t_2);
|
|
17644
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_method, __pyx_t_2) < 0) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17645
|
-
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17646
17638
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17639
|
+
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_descriptor); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17640
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17641
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_descriptor, __pyx_t_3) < 0) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17642
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17643
|
+
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_config); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17644
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17645
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_config, __pyx_t_3) < 0) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17646
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17647
|
+
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_function); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17648
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17649
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_function, __pyx_t_3) < 0) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17650
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17651
|
+
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_method); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17652
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17653
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_method, __pyx_t_3) < 0) __PYX_ERR(0, 14, __pyx_L1_error)
|
|
17654
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17655
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17647
17656
|
|
|
17648
17657
|
/* "a_sync/a_sync/property.pyx":19
|
|
17649
17658
|
* from a_sync.a_sync.function cimport _ModifiedMixin
|
|
@@ -17653,19 +17662,19 @@ if (!__Pyx_RefNanny) {
|
|
|
17653
17662
|
* from a_sync.asyncio.create_task cimport ccreate_task_simple
|
|
17654
17663
|
*/
|
|
17655
17664
|
__Pyx_TraceLine(19,0,__PYX_ERR(0, 19, __pyx_L1_error))
|
|
17656
|
-
|
|
17657
|
-
__Pyx_GOTREF(
|
|
17665
|
+
__pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 19, __pyx_L1_error)
|
|
17666
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17658
17667
|
__Pyx_INCREF(__pyx_n_s_cached);
|
|
17659
17668
|
__Pyx_GIVEREF(__pyx_n_s_cached);
|
|
17660
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17661
|
-
|
|
17662
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17663
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17664
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_cached); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 19, __pyx_L1_error)
|
|
17669
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_cached)) __PYX_ERR(0, 19, __pyx_L1_error);
|
|
17670
|
+
__pyx_t_3 = __Pyx_Import(__pyx_n_s_a_sync_async_property, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 19, __pyx_L1_error)
|
|
17665
17671
|
__Pyx_GOTREF(__pyx_t_3);
|
|
17666
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_cached, __pyx_t_3) < 0) __PYX_ERR(0, 19, __pyx_L1_error)
|
|
17667
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17668
17672
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17673
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_cached); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 19, __pyx_L1_error)
|
|
17674
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17675
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_cached, __pyx_t_2) < 0) __PYX_ERR(0, 19, __pyx_L1_error)
|
|
17676
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17677
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17669
17678
|
|
|
17670
17679
|
/* "a_sync/a_sync/property.pyx":24
|
|
17671
17680
|
* from a_sync.functools cimport wraps
|
|
@@ -17675,13 +17684,13 @@ if (!__Pyx_RefNanny) {
|
|
|
17675
17684
|
*
|
|
17676
17685
|
*/
|
|
17677
17686
|
__Pyx_TraceLine(24,0,__PYX_ERR(0, 24, __pyx_L1_error))
|
|
17678
|
-
__Pyx_GetModuleGlobalName(
|
|
17679
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17680
|
-
__pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_TYPE_CHECKING); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 24, __pyx_L1_error)
|
|
17687
|
+
__Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_typing); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 24, __pyx_L1_error)
|
|
17681
17688
|
__Pyx_GOTREF(__pyx_t_3);
|
|
17682
|
-
|
|
17683
|
-
|
|
17689
|
+
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_TYPE_CHECKING); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 24, __pyx_L1_error)
|
|
17690
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17684
17691
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17692
|
+
__pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely((__pyx_t_4 < 0))) __PYX_ERR(0, 24, __pyx_L1_error)
|
|
17693
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17685
17694
|
if (__pyx_t_4) {
|
|
17686
17695
|
|
|
17687
17696
|
/* "a_sync/a_sync/property.pyx":25
|
|
@@ -17692,19 +17701,19 @@ if (!__Pyx_RefNanny) {
|
|
|
17692
17701
|
* else:
|
|
17693
17702
|
*/
|
|
17694
17703
|
__Pyx_TraceLine(25,0,__PYX_ERR(0, 25, __pyx_L1_error))
|
|
17695
|
-
|
|
17696
|
-
__Pyx_GOTREF(
|
|
17704
|
+
__pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 25, __pyx_L1_error)
|
|
17705
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17697
17706
|
__Pyx_INCREF(__pyx_n_s_TaskMapping);
|
|
17698
17707
|
__Pyx_GIVEREF(__pyx_n_s_TaskMapping);
|
|
17699
|
-
if (__Pyx_PyList_SET_ITEM(
|
|
17700
|
-
|
|
17701
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17702
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17703
|
-
__pyx_t_3 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_TaskMapping); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 25, __pyx_L1_error)
|
|
17708
|
+
if (__Pyx_PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_TaskMapping)) __PYX_ERR(0, 25, __pyx_L1_error);
|
|
17709
|
+
__pyx_t_3 = __Pyx_Import(__pyx_n_s_a_sync_task, __pyx_t_2, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 25, __pyx_L1_error)
|
|
17704
17710
|
__Pyx_GOTREF(__pyx_t_3);
|
|
17705
|
-
if (PyDict_SetItem(__pyx_d, __pyx_n_s_TaskMapping, __pyx_t_3) < 0) __PYX_ERR(0, 25, __pyx_L1_error)
|
|
17706
|
-
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17707
17711
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17712
|
+
__pyx_t_2 = __Pyx_ImportFrom(__pyx_t_3, __pyx_n_s_TaskMapping); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 25, __pyx_L1_error)
|
|
17713
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17714
|
+
if (PyDict_SetItem(__pyx_d, __pyx_n_s_TaskMapping, __pyx_t_2) < 0) __PYX_ERR(0, 25, __pyx_L1_error)
|
|
17715
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17716
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17708
17717
|
|
|
17709
17718
|
/* "a_sync/a_sync/property.pyx":24
|
|
17710
17719
|
* from a_sync.functools cimport wraps
|
|
@@ -17737,15 +17746,15 @@ if (!__Pyx_RefNanny) {
|
|
|
17737
17746
|
* cdef object Lock = asyncio.Lock
|
|
17738
17747
|
*/
|
|
17739
17748
|
__Pyx_TraceLine(33,0,__PYX_ERR(0, 33, __pyx_L1_error))
|
|
17740
|
-
__Pyx_GetModuleGlobalName(
|
|
17741
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17742
|
-
__pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_get_event_loop); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 33, __pyx_L1_error)
|
|
17749
|
+
__Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_asyncio); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 33, __pyx_L1_error)
|
|
17743
17750
|
__Pyx_GOTREF(__pyx_t_3);
|
|
17744
|
-
|
|
17751
|
+
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_get_event_loop); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 33, __pyx_L1_error)
|
|
17752
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17753
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17745
17754
|
__Pyx_XGOTREF(__pyx_v_6a_sync_6a_sync_8property_get_event_loop);
|
|
17746
|
-
__Pyx_DECREF_SET(__pyx_v_6a_sync_6a_sync_8property_get_event_loop,
|
|
17747
|
-
__Pyx_GIVEREF(
|
|
17748
|
-
|
|
17755
|
+
__Pyx_DECREF_SET(__pyx_v_6a_sync_6a_sync_8property_get_event_loop, __pyx_t_2);
|
|
17756
|
+
__Pyx_GIVEREF(__pyx_t_2);
|
|
17757
|
+
__pyx_t_2 = 0;
|
|
17749
17758
|
|
|
17750
17759
|
/* "a_sync/a_sync/property.pyx":34
|
|
17751
17760
|
* # cdef asyncio
|
|
@@ -17755,15 +17764,15 @@ if (!__Pyx_RefNanny) {
|
|
|
17755
17764
|
* cdef object Task = asyncio.Task
|
|
17756
17765
|
*/
|
|
17757
17766
|
__Pyx_TraceLine(34,0,__PYX_ERR(0, 34, __pyx_L1_error))
|
|
17758
|
-
__Pyx_GetModuleGlobalName(
|
|
17759
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17760
|
-
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_iscoroutinefunction); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 34, __pyx_L1_error)
|
|
17767
|
+
__Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_asyncio); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 34, __pyx_L1_error)
|
|
17761
17768
|
__Pyx_GOTREF(__pyx_t_2);
|
|
17762
|
-
|
|
17769
|
+
__pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_iscoroutinefunction); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 34, __pyx_L1_error)
|
|
17770
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17771
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17763
17772
|
__Pyx_XGOTREF(__pyx_v_6a_sync_6a_sync_8property_iscoroutinefunction);
|
|
17764
|
-
__Pyx_DECREF_SET(__pyx_v_6a_sync_6a_sync_8property_iscoroutinefunction,
|
|
17765
|
-
__Pyx_GIVEREF(
|
|
17766
|
-
|
|
17773
|
+
__Pyx_DECREF_SET(__pyx_v_6a_sync_6a_sync_8property_iscoroutinefunction, __pyx_t_3);
|
|
17774
|
+
__Pyx_GIVEREF(__pyx_t_3);
|
|
17775
|
+
__pyx_t_3 = 0;
|
|
17767
17776
|
|
|
17768
17777
|
/* "a_sync/a_sync/property.pyx":35
|
|
17769
17778
|
* cdef object get_event_loop = asyncio.get_event_loop
|
|
@@ -17773,15 +17782,15 @@ if (!__Pyx_RefNanny) {
|
|
|
17773
17782
|
* del asyncio
|
|
17774
17783
|
*/
|
|
17775
17784
|
__Pyx_TraceLine(35,0,__PYX_ERR(0, 35, __pyx_L1_error))
|
|
17776
|
-
__Pyx_GetModuleGlobalName(
|
|
17777
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17778
|
-
__pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_Lock); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 35, __pyx_L1_error)
|
|
17785
|
+
__Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_asyncio); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 35, __pyx_L1_error)
|
|
17779
17786
|
__Pyx_GOTREF(__pyx_t_3);
|
|
17780
|
-
|
|
17787
|
+
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_Lock); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 35, __pyx_L1_error)
|
|
17788
|
+
__Pyx_GOTREF(__pyx_t_2);
|
|
17789
|
+
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
17781
17790
|
__Pyx_XGOTREF(__pyx_v_6a_sync_6a_sync_8property_Lock);
|
|
17782
|
-
__Pyx_DECREF_SET(__pyx_v_6a_sync_6a_sync_8property_Lock,
|
|
17783
|
-
__Pyx_GIVEREF(
|
|
17784
|
-
|
|
17791
|
+
__Pyx_DECREF_SET(__pyx_v_6a_sync_6a_sync_8property_Lock, __pyx_t_2);
|
|
17792
|
+
__Pyx_GIVEREF(__pyx_t_2);
|
|
17793
|
+
__pyx_t_2 = 0;
|
|
17785
17794
|
|
|
17786
17795
|
/* "a_sync/a_sync/property.pyx":36
|
|
17787
17796
|
* cdef object iscoroutinefunction = asyncio.iscoroutinefunction
|
|
@@ -17791,15 +17800,15 @@ if (!__Pyx_RefNanny) {
|
|
|
17791
17800
|
*
|
|
17792
17801
|
*/
|
|
17793
17802
|
__Pyx_TraceLine(36,0,__PYX_ERR(0, 36, __pyx_L1_error))
|
|
17794
|
-
__Pyx_GetModuleGlobalName(
|
|
17795
|
-
__Pyx_GOTREF(__pyx_t_3);
|
|
17796
|
-
__pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_Task); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
17803
|
+
__Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_asyncio); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
17797
17804
|
__Pyx_GOTREF(__pyx_t_2);
|
|
17798
|
-
|
|
17805
|
+
__pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_Task); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
17806
|
+
__Pyx_GOTREF(__pyx_t_3);
|
|
17807
|
+
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
17799
17808
|
__Pyx_XGOTREF(__pyx_v_6a_sync_6a_sync_8property_Task);
|
|
17800
|
-
__Pyx_DECREF_SET(__pyx_v_6a_sync_6a_sync_8property_Task,
|
|
17801
|
-
__Pyx_GIVEREF(
|
|
17802
|
-
|
|
17809
|
+
__Pyx_DECREF_SET(__pyx_v_6a_sync_6a_sync_8property_Task, __pyx_t_3);
|
|
17810
|
+
__Pyx_GIVEREF(__pyx_t_3);
|
|
17811
|
+
__pyx_t_3 = 0;
|
|
17803
17812
|
|
|
17804
17813
|
/* "a_sync/a_sync/property.pyx":37
|
|
17805
17814
|
* cdef object Lock = asyncio.Lock
|
|
@@ -17814,30 +17823,27 @@ if (!__Pyx_RefNanny) {
|
|
|
17814
17823
|
/* "a_sync/a_sync/property.pyx":40
|
|
17815
17824
|
*
|
|
17816
17825
|
* # cdef copy
|
|
17817
|
-
* cdef object
|
|
17818
|
-
* del
|
|
17826
|
+
* cdef object copy = _copy # <<<<<<<<<<<<<<
|
|
17827
|
+
* del _copy
|
|
17819
17828
|
*
|
|
17820
17829
|
*/
|
|
17821
17830
|
__Pyx_TraceLine(40,0,__PYX_ERR(0, 40, __pyx_L1_error))
|
|
17822
|
-
__Pyx_GetModuleGlobalName(
|
|
17823
|
-
__Pyx_GOTREF(__pyx_t_2);
|
|
17824
|
-
__pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_deepcopy); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 40, __pyx_L1_error)
|
|
17831
|
+
__Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_copy_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 40, __pyx_L1_error)
|
|
17825
17832
|
__Pyx_GOTREF(__pyx_t_3);
|
|
17826
|
-
|
|
17827
|
-
|
|
17828
|
-
__Pyx_DECREF_SET(__pyx_v_6a_sync_6a_sync_8property_deepcopy, __pyx_t_3);
|
|
17833
|
+
__Pyx_XGOTREF(__pyx_v_6a_sync_6a_sync_8property_copy);
|
|
17834
|
+
__Pyx_DECREF_SET(__pyx_v_6a_sync_6a_sync_8property_copy, __pyx_t_3);
|
|
17829
17835
|
__Pyx_GIVEREF(__pyx_t_3);
|
|
17830
17836
|
__pyx_t_3 = 0;
|
|
17831
17837
|
|
|
17832
17838
|
/* "a_sync/a_sync/property.pyx":41
|
|
17833
17839
|
* # cdef copy
|
|
17834
|
-
* cdef object
|
|
17835
|
-
* del
|
|
17840
|
+
* cdef object copy = _copy
|
|
17841
|
+
* del _copy # <<<<<<<<<<<<<<
|
|
17836
17842
|
*
|
|
17837
17843
|
* # cdef functools
|
|
17838
17844
|
*/
|
|
17839
17845
|
__Pyx_TraceLine(41,0,__PYX_ERR(0, 41, __pyx_L1_error))
|
|
17840
|
-
if (__Pyx_PyObject_DelAttrStr(__pyx_m,
|
|
17846
|
+
if (__Pyx_PyObject_DelAttrStr(__pyx_m, __pyx_n_s_copy_2) < 0) __PYX_ERR(0, 41, __pyx_L1_error)
|
|
17841
17847
|
|
|
17842
17848
|
/* "a_sync/a_sync/property.pyx":44
|
|
17843
17849
|
*
|
|
@@ -20486,8 +20492,8 @@ if (!__Pyx_RefNanny) {
|
|
|
20486
20492
|
|
|
20487
20493
|
/* "a_sync/a_sync/property.pyx":1
|
|
20488
20494
|
* import asyncio # <<<<<<<<<<<<<<
|
|
20489
|
-
* import copy
|
|
20490
20495
|
* import functools
|
|
20496
|
+
* import typing
|
|
20491
20497
|
*/
|
|
20492
20498
|
__Pyx_TraceLine(1,0,__PYX_ERR(0, 1, __pyx_L1_error))
|
|
20493
20499
|
__pyx_t_6 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 1, __pyx_L1_error)
|