ez-a-sync 0.32.26__cp39-cp39-win32.whl → 0.32.28__cp39-cp39-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ez-a-sync might be problematic. Click here for more details.

Files changed (71) hide show
  1. a_sync/_smart.c +58 -38
  2. a_sync/_smart.cp39-win32.pyd +0 -0
  3. a_sync/a_sync/_descriptor.c +78 -58
  4. a_sync/a_sync/_descriptor.cp39-win32.pyd +0 -0
  5. a_sync/a_sync/_flags.c +13 -10
  6. a_sync/a_sync/_flags.cp39-win32.pyd +0 -0
  7. a_sync/a_sync/_helpers.c +76 -56
  8. a_sync/a_sync/_helpers.cp39-win32.pyd +0 -0
  9. a_sync/a_sync/_kwargs.c +45 -25
  10. a_sync/a_sync/_kwargs.cp39-win32.pyd +0 -0
  11. a_sync/a_sync/abstract.c +54 -24
  12. a_sync/a_sync/abstract.cp39-win32.pyd +0 -0
  13. a_sync/a_sync/abstract.pyi +2 -2
  14. a_sync/a_sync/base.c +186 -162
  15. a_sync/a_sync/base.cp39-win32.pyd +0 -0
  16. a_sync/a_sync/flags.c +13 -10
  17. a_sync/a_sync/flags.cp39-win32.pyd +0 -0
  18. a_sync/a_sync/function.c +106 -77
  19. a_sync/a_sync/function.cp39-win32.pyd +0 -0
  20. a_sync/a_sync/method.c +155 -123
  21. a_sync/a_sync/method.cp39-win32.pyd +0 -0
  22. a_sync/a_sync/method.pyi +2 -1
  23. a_sync/a_sync/modifiers/manager.c +60 -40
  24. a_sync/a_sync/modifiers/manager.cp39-win32.pyd +0 -0
  25. a_sync/a_sync/property.c +104 -78
  26. a_sync/a_sync/property.cp39-win32.pyd +0 -0
  27. a_sync/async_property/cached.c +71 -51
  28. a_sync/async_property/cached.cp39-win32.pyd +0 -0
  29. a_sync/async_property/proxy.c +37 -17
  30. a_sync/async_property/proxy.cp39-win32.pyd +0 -0
  31. a_sync/asyncio/as_completed.c +33 -13
  32. a_sync/asyncio/as_completed.cp39-win32.pyd +0 -0
  33. a_sync/asyncio/create_task.c +59 -21
  34. a_sync/asyncio/create_task.cp39-win32.pyd +0 -0
  35. a_sync/asyncio/gather.c +42 -22
  36. a_sync/asyncio/gather.cp39-win32.pyd +0 -0
  37. a_sync/asyncio/igather.c +42 -18
  38. a_sync/asyncio/igather.cp39-win32.pyd +0 -0
  39. a_sync/asyncio/sleep.c +24 -4
  40. a_sync/asyncio/sleep.cp39-win32.pyd +0 -0
  41. a_sync/debugging.c +52 -32
  42. a_sync/debugging.cp39-win32.pyd +0 -0
  43. a_sync/exceptions.c +36 -20
  44. a_sync/exceptions.cp39-win32.pyd +0 -0
  45. a_sync/executor.py +44 -0
  46. a_sync/functools.c +36 -16
  47. a_sync/functools.cp39-win32.pyd +0 -0
  48. a_sync/iter.c +161 -91
  49. a_sync/iter.cp39-win32.pyd +0 -0
  50. a_sync/primitives/_debug.c +69 -49
  51. a_sync/primitives/_debug.cp39-win32.pyd +0 -0
  52. a_sync/primitives/_loggable.c +48 -22
  53. a_sync/primitives/_loggable.cp39-win32.pyd +0 -0
  54. a_sync/primitives/locks/counter.c +93 -63
  55. a_sync/primitives/locks/counter.cp39-win32.pyd +0 -0
  56. a_sync/primitives/locks/event.c +75 -54
  57. a_sync/primitives/locks/event.cp39-win32.pyd +0 -0
  58. a_sync/primitives/locks/prio_semaphore.c +123 -83
  59. a_sync/primitives/locks/prio_semaphore.cp39-win32.pyd +0 -0
  60. a_sync/primitives/locks/prio_semaphore.pyi +2 -2
  61. a_sync/primitives/locks/semaphore.c +96 -69
  62. a_sync/primitives/locks/semaphore.cp39-win32.pyd +0 -0
  63. a_sync/primitives/locks/semaphore.pyi +10 -9
  64. a_sync/primitives/queue.py +5 -1
  65. a_sync/utils/repr.c +55 -35
  66. a_sync/utils/repr.cp39-win32.pyd +0 -0
  67. {ez_a_sync-0.32.26.dist-info → ez_a_sync-0.32.28.dist-info}/METADATA +1 -1
  68. {ez_a_sync-0.32.26.dist-info → ez_a_sync-0.32.28.dist-info}/RECORD +71 -71
  69. {ez_a_sync-0.32.26.dist-info → ez_a_sync-0.32.28.dist-info}/WHEEL +0 -0
  70. {ez_a_sync-0.32.26.dist-info → ez_a_sync-0.32.28.dist-info}/licenses/LICENSE.txt +0 -0
  71. {ez_a_sync-0.32.26.dist-info → ez_a_sync-0.32.28.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.4 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -29,8 +29,8 @@ END: Cython Metadata */
29
29
  #elif PY_VERSION_HEX < 0x03080000
30
30
  #error Cython requires Python 3.8+.
31
31
  #else
32
- #define __PYX_ABI_VERSION "3_1_2"
33
- #define CYTHON_HEX_VERSION 0x030102F0
32
+ #define __PYX_ABI_VERSION "3_1_4"
33
+ #define CYTHON_HEX_VERSION 0x030104F0
34
34
  #define CYTHON_FUTURE_DIVISION 1
35
35
  /* CModulePreamble */
36
36
  #include <stddef.h>
@@ -393,6 +393,9 @@ END: Cython Metadata */
393
393
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
394
394
  #endif
395
395
  #endif
396
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
397
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
398
+ #endif
396
399
  #ifndef __has_attribute
397
400
  #define __has_attribute(x) 0
398
401
  #endif
@@ -2082,18 +2085,18 @@ static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact,
2082
2085
  if (!__Pyx_PyThreadState_Current->tracing) {\
2083
2086
  if (likely(__pyx_frame_code)) Py_INCREF(__pyx_frame_code);\
2084
2087
  else __pyx_frame_code = (PyObject*) __Pyx_createFrameCodeObject(funcname, srcfile, firstlineno);\
2085
- if (unlikely(!__pyx_frame_code)) goto_error;\
2086
- ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
2087
- }\
2088
+ if (unlikely(!__pyx_frame_code)) ret = -1;\
2089
+ else ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
2090
+ } else __pyx_frame_code = NULL;\
2088
2091
  PyGILState_Release(state);\
2089
- }\
2092
+ } else __pyx_frame_code = NULL;\
2090
2093
  } else {\
2091
2094
  if (!__Pyx_PyThreadState_Current->tracing) {\
2092
2095
  if (likely(__pyx_frame_code)) Py_INCREF(__pyx_frame_code);\
2093
2096
  else __pyx_frame_code = (PyObject*) __Pyx_createFrameCodeObject(funcname, srcfile, firstlineno);\
2094
- if (unlikely(!__pyx_frame_code)) goto_error;\
2095
- ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
2096
- }\
2097
+ if (unlikely(!__pyx_frame_code)) ret = -1;\
2098
+ else ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
2099
+ } else __pyx_frame_code = NULL;\
2097
2100
  }\
2098
2101
  if (unlikely(ret == -1)) goto_error;\
2099
2102
  }
@@ -2883,22 +2886,22 @@ static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k);
2883
2886
  static int __Pyx_setup_reduce(PyObject* type_obj);
2884
2887
 
2885
2888
  /* TypeImport.proto */
2886
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_1_2
2887
- #define __PYX_HAVE_RT_ImportType_proto_3_1_2
2889
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_1_4
2890
+ #define __PYX_HAVE_RT_ImportType_proto_3_1_4
2888
2891
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2889
2892
  #include <stdalign.h>
2890
2893
  #endif
2891
2894
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2892
- #define __PYX_GET_STRUCT_ALIGNMENT_3_1_2(s) alignof(s)
2895
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) alignof(s)
2893
2896
  #else
2894
- #define __PYX_GET_STRUCT_ALIGNMENT_3_1_2(s) sizeof(void*)
2897
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) sizeof(void*)
2895
2898
  #endif
2896
- enum __Pyx_ImportType_CheckSize_3_1_2 {
2897
- __Pyx_ImportType_CheckSize_Error_3_1_2 = 0,
2898
- __Pyx_ImportType_CheckSize_Warn_3_1_2 = 1,
2899
- __Pyx_ImportType_CheckSize_Ignore_3_1_2 = 2
2899
+ enum __Pyx_ImportType_CheckSize_3_1_4 {
2900
+ __Pyx_ImportType_CheckSize_Error_3_1_4 = 0,
2901
+ __Pyx_ImportType_CheckSize_Warn_3_1_4 = 1,
2902
+ __Pyx_ImportType_CheckSize_Ignore_3_1_4 = 2
2900
2903
  };
2901
- static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_2 check_size);
2904
+ static PyTypeObject *__Pyx_ImportType_3_1_4(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_4 check_size);
2902
2905
  #endif
2903
2906
 
2904
2907
  /* Import.proto */
@@ -3097,7 +3100,7 @@ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt
3097
3100
  static int __Pyx_ExportVoidPtr(PyObject *name, void *p, const char *sig);
3098
3101
 
3099
3102
  /* FunctionImport.proto */
3100
- static int __Pyx_ImportFunction_3_1_2(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
3103
+ static int __Pyx_ImportFunction_3_1_4(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
3101
3104
 
3102
3105
  /* MultiPhaseInitModuleState.proto */
3103
3106
  #if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE
@@ -11056,27 +11059,27 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
11056
11059
  /*--- Type import code ---*/
11057
11060
  __pyx_t_1 = PyImport_ImportModule("a_sync.async_property.proxy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 1, __pyx_L1_error)
11058
11061
  __Pyx_GOTREF(__pyx_t_1);
11059
- __pyx_mstate->__pyx_ptype_6a_sync_14async_property_5proxy_AwaitableOnly = __Pyx_ImportType_3_1_2(__pyx_t_1, "a_sync.async_property.proxy", "AwaitableOnly",
11062
+ __pyx_mstate->__pyx_ptype_6a_sync_14async_property_5proxy_AwaitableOnly = __Pyx_ImportType_3_1_4(__pyx_t_1, "a_sync.async_property.proxy", "AwaitableOnly",
11060
11063
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
11061
- sizeof(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly), __PYX_GET_STRUCT_ALIGNMENT_3_1_2(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly),
11064
+ sizeof(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly),
11062
11065
  #elif CYTHON_COMPILING_IN_LIMITED_API
11063
- sizeof(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly), __PYX_GET_STRUCT_ALIGNMENT_3_1_2(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly),
11066
+ sizeof(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly),
11064
11067
  #else
11065
- sizeof(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly), __PYX_GET_STRUCT_ALIGNMENT_3_1_2(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly),
11068
+ sizeof(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_14async_property_5proxy_AwaitableOnly),
11066
11069
  #endif
11067
- __Pyx_ImportType_CheckSize_Warn_3_1_2); if (!__pyx_mstate->__pyx_ptype_6a_sync_14async_property_5proxy_AwaitableOnly) __PYX_ERR(3, 1, __pyx_L1_error)
11070
+ __Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_6a_sync_14async_property_5proxy_AwaitableOnly) __PYX_ERR(3, 1, __pyx_L1_error)
11068
11071
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
11069
11072
  __pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (unlikely(!__pyx_t_1)) __PYX_ERR(4, 1, __pyx_L1_error)
11070
11073
  __Pyx_GOTREF(__pyx_t_1);
11071
- __pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe = __Pyx_ImportType_3_1_2(__pyx_t_1, "a_sync.functools", "cached_property_unsafe",
11074
+ __pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe = __Pyx_ImportType_3_1_4(__pyx_t_1, "a_sync.functools", "cached_property_unsafe",
11072
11075
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
11073
- sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe), __PYX_GET_STRUCT_ALIGNMENT_3_1_2(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
11076
+ sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
11074
11077
  #elif CYTHON_COMPILING_IN_LIMITED_API
11075
- sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe), __PYX_GET_STRUCT_ALIGNMENT_3_1_2(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
11078
+ sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
11076
11079
  #else
11077
- sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe), __PYX_GET_STRUCT_ALIGNMENT_3_1_2(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
11080
+ sizeof(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(struct __pyx_obj_6a_sync_9functools_cached_property_unsafe),
11078
11081
  #endif
11079
- __Pyx_ImportType_CheckSize_Warn_3_1_2); if (!__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe) __PYX_ERR(4, 1, __pyx_L1_error)
11082
+ __Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_6a_sync_9functools_cached_property_unsafe) __PYX_ERR(4, 1, __pyx_L1_error)
11080
11083
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
11081
11084
  __Pyx_RefNannyFinishContext();
11082
11085
  return 0;
@@ -11106,11 +11109,11 @@ static int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate) {
11106
11109
  /*--- Function import code ---*/
11107
11110
  __pyx_t_1 = PyImport_ImportModule("a_sync._smart"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
11108
11111
  __Pyx_GOTREF(__pyx_t_1);
11109
- if (__Pyx_ImportFunction_3_1_2(__pyx_t_1, "shield", (void (**)(void))&__pyx_f_6a_sync_6_smart_shield, "PyObject *(PyObject *, int __pyx_skip_dispatch)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
11112
+ if (__Pyx_ImportFunction_3_1_4(__pyx_t_1, "shield", (void (**)(void))&__pyx_f_6a_sync_6_smart_shield, "PyObject *(PyObject *, int __pyx_skip_dispatch)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
11110
11113
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
11111
11114
  __pyx_t_1 = PyImport_ImportModule("a_sync.functools"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
11112
11115
  __Pyx_GOTREF(__pyx_t_1);
11113
- if (__Pyx_ImportFunction_3_1_2(__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)
11116
+ if (__Pyx_ImportFunction_3_1_4(__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)
11114
11117
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
11115
11118
  __Pyx_RefNannyFinishContext();
11116
11119
  return 0;
@@ -11404,7 +11407,7 @@ __Pyx_RefNannySetupContext("PyInit_cached", 0);
11404
11407
  (void)__Pyx_modinit_variable_import_code(__pyx_mstate);
11405
11408
  if (unlikely((__Pyx_modinit_function_import_code(__pyx_mstate) < 0))) __PYX_ERR(0, 1, __pyx_L1_error)
11406
11409
  /*--- Execution code ---*/
11407
- __Pyx_TraceStartFunc("PyInit_cached", __pyx_f[0], 1, 1, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
11410
+ __Pyx_TraceStartFunc("PyInit_cached", __pyx_f[0], 1, 0, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
11408
11411
 
11409
11412
  /* "a_sync/async_property/cached.pyx":1
11410
11413
  * import asyncio # <<<<<<<<<<<<<<
@@ -11698,7 +11701,7 @@ __Pyx_RefNannySetupContext("PyInit_cached", 0);
11698
11701
  * raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
11699
11702
  * def __setstate_cython__(self, __pyx_state):
11700
11703
  */
11701
- __Pyx_TraceLine(1,0,0,__PYX_ERR(1, 1, __pyx_L1_error))
11704
+ __Pyx_TraceLine(1,1,0,__PYX_ERR(1, 1, __pyx_L1_error))
11702
11705
  __pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_14async_property_6cached_32AsyncCachedPropertyInstanceState_3__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_AsyncCachedPropertyInstanceState_2, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_async_property_cached, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[6])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 1, __pyx_L1_error)
11703
11706
  __Pyx_GOTREF(__pyx_t_3);
11704
11707
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_3) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
@@ -11996,12 +11999,12 @@ __Pyx_RefNannySetupContext("PyInit_cached", 0);
11996
11999
  * import collections
11997
12000
  * import functools
11998
12001
  */
11999
- __Pyx_TraceLine(1,1,0,__PYX_ERR(0, 1, __pyx_L1_error))
12002
+ __Pyx_TraceLine(1,0,0,__PYX_ERR(0, 1, __pyx_L1_error))
12000
12003
  __pyx_t_3 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 1, __pyx_L1_error)
12001
12004
  __Pyx_GOTREF(__pyx_t_3);
12002
12005
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_3) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
12003
12006
  __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
12004
- __Pyx_TraceReturnValue(Py_None, 1, 0, __PYX_ERR(0, 1, __pyx_L1_error));
12007
+ __Pyx_TraceReturnValue(Py_None, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
12005
12008
  __Pyx_PyMonitoring_ExitScope(0);
12006
12009
 
12007
12010
  /*--- Wrapped vars code ---*/
@@ -12012,7 +12015,7 @@ __Pyx_RefNannySetupContext("PyInit_cached", 0);
12012
12015
  __Pyx_XDECREF(__pyx_t_3);
12013
12016
  __Pyx_XDECREF(__pyx_t_4);
12014
12017
  __Pyx_TraceException(__pyx_lineno, 0, 0);
12015
- __Pyx_TraceExceptionUnwind(1, 0);
12018
+ __Pyx_TraceExceptionUnwind(0, 0);
12016
12019
  if (__pyx_m) {
12017
12020
  if (__pyx_mstate->__pyx_d && stringtab_initialized) {
12018
12021
  __Pyx_AddTraceback("init a_sync.async_property.cached", __pyx_clineno, __pyx_lineno, __pyx_filename);
@@ -14386,6 +14389,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
14386
14389
  changed = 1;
14387
14390
  }
14388
14391
  #endif // CYTHON_METH_FASTCALL
14392
+ #if !CYTHON_COMPILING_IN_PYPY
14389
14393
  else if (strcmp(memb->name, "__module__") == 0) {
14390
14394
  PyObject *descr;
14391
14395
  assert(memb->type == T_OBJECT);
@@ -14400,11 +14404,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
14400
14404
  }
14401
14405
  changed = 1;
14402
14406
  }
14407
+ #endif // !CYTHON_COMPILING_IN_PYPY
14403
14408
  }
14404
14409
  memb++;
14405
14410
  }
14406
14411
  }
14407
14412
  #endif // !CYTHON_COMPILING_IN_LIMITED_API
14413
+ #if !CYTHON_COMPILING_IN_PYPY
14408
14414
  slot = spec->slots;
14409
14415
  while (slot && slot->slot && slot->slot != Py_tp_getset)
14410
14416
  slot++;
@@ -14436,6 +14442,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
14436
14442
  ++getset;
14437
14443
  }
14438
14444
  }
14445
+ #endif // !CYTHON_COMPILING_IN_PYPY
14439
14446
  if (changed)
14440
14447
  PyType_Modified(type);
14441
14448
  #endif // PY_VERSION_HEX > 0x030900B1
@@ -14568,7 +14575,7 @@ bad:
14568
14575
  }
14569
14576
 
14570
14577
  /* CommonTypesMetaclass */
14571
- PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
14578
+ static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
14572
14579
  return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
14573
14580
  }
14574
14581
  static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
@@ -14597,6 +14604,7 @@ static int __pyx_CommonTypesMetaclass_init(PyObject *module) {
14597
14604
  return -1;
14598
14605
  }
14599
14606
  mstate->__pyx_CommonTypesMetaclassType = __Pyx_FetchCommonTypeFromSpec(NULL, module, &__pyx_CommonTypesMetaclass_spec, bases);
14607
+ Py_DECREF(bases);
14600
14608
  if (unlikely(mstate->__pyx_CommonTypesMetaclassType == NULL)) {
14601
14609
  return -1;
14602
14610
  }
@@ -14802,7 +14810,7 @@ try_unpack:
14802
14810
  }
14803
14811
 
14804
14812
  /* PyObjectCallMethod1 */
14805
- #if !(CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000)
14813
+ #if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)))
14806
14814
  static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
14807
14815
  PyObject *result = __Pyx_PyObject_CallOneArg(method, arg);
14808
14816
  Py_DECREF(method);
@@ -14810,7 +14818,7 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
14810
14818
  }
14811
14819
  #endif
14812
14820
  static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) {
14813
- #if CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000
14821
+ #if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
14814
14822
  PyObject *args[2] = {obj, arg};
14815
14823
  (void) __Pyx_PyObject_GetMethod;
14816
14824
  (void) __Pyx_PyObject_CallOneArg;
@@ -17475,6 +17483,13 @@ static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *func, Py
17475
17483
 
17476
17484
  /* PyObjectCallMethod0 */
17477
17485
  static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
17486
+ #if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
17487
+ PyObject *args[1] = {obj};
17488
+ (void) __Pyx_PyObject_GetMethod;
17489
+ (void) __Pyx_PyObject_CallOneArg;
17490
+ (void) __Pyx_PyObject_CallNoArg;
17491
+ return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
17492
+ #else
17478
17493
  PyObject *method = NULL, *result = NULL;
17479
17494
  int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
17480
17495
  if (likely(is_method)) {
@@ -17487,6 +17502,7 @@ static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *func, Py
17487
17502
  Py_DECREF(method);
17488
17503
  bad:
17489
17504
  return result;
17505
+ #endif
17490
17506
  }
17491
17507
 
17492
17508
  /* ValidateBasesTuple */
@@ -17916,15 +17932,15 @@ __PYX_GOOD:
17916
17932
  }
17917
17933
 
17918
17934
  /* TypeImport */
17919
- #ifndef __PYX_HAVE_RT_ImportType_3_1_2
17920
- #define __PYX_HAVE_RT_ImportType_3_1_2
17921
- static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module_name, const char *class_name,
17922
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_2 check_size)
17935
+ #ifndef __PYX_HAVE_RT_ImportType_3_1_4
17936
+ #define __PYX_HAVE_RT_ImportType_3_1_4
17937
+ static PyTypeObject *__Pyx_ImportType_3_1_4(PyObject *module, const char *module_name, const char *class_name,
17938
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_4 check_size)
17923
17939
  {
17924
17940
  PyObject *result = 0;
17925
17941
  Py_ssize_t basicsize;
17926
17942
  Py_ssize_t itemsize;
17927
- #if CYTHON_COMPILING_IN_LIMITED_API
17943
+ #ifdef Py_LIMITED_API
17928
17944
  PyObject *py_basicsize;
17929
17945
  PyObject *py_itemsize;
17930
17946
  #endif
@@ -17937,7 +17953,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
17937
17953
  module_name, class_name);
17938
17954
  goto bad;
17939
17955
  }
17940
- #if !CYTHON_COMPILING_IN_LIMITED_API
17956
+ #ifndef Py_LIMITED_API
17941
17957
  basicsize = ((PyTypeObject *)result)->tp_basicsize;
17942
17958
  itemsize = ((PyTypeObject *)result)->tp_itemsize;
17943
17959
  #else
@@ -17975,7 +17991,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
17975
17991
  module_name, class_name, size, basicsize+itemsize);
17976
17992
  goto bad;
17977
17993
  }
17978
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_2 &&
17994
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_4 &&
17979
17995
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
17980
17996
  PyErr_Format(PyExc_ValueError,
17981
17997
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -17983,7 +17999,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
17983
17999
  module_name, class_name, size, basicsize, basicsize+itemsize);
17984
18000
  goto bad;
17985
18001
  }
17986
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_2 && (size_t)basicsize > size) {
18002
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_4 && (size_t)basicsize > size) {
17987
18003
  if (PyErr_WarnFormat(NULL, 0,
17988
18004
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
17989
18005
  "Expected %zd from C header, got %zd from PyObject",
@@ -19503,9 +19519,9 @@ bad:
19503
19519
  }
19504
19520
 
19505
19521
  /* FunctionImport */
19506
- #ifndef __PYX_HAVE_RT_ImportFunction_3_1_2
19507
- #define __PYX_HAVE_RT_ImportFunction_3_1_2
19508
- static int __Pyx_ImportFunction_3_1_2(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
19522
+ #ifndef __PYX_HAVE_RT_ImportFunction_3_1_4
19523
+ #define __PYX_HAVE_RT_ImportFunction_3_1_4
19524
+ static int __Pyx_ImportFunction_3_1_4(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
19509
19525
  PyObject *d = 0;
19510
19526
  PyObject *cobj = 0;
19511
19527
  union {
@@ -19607,6 +19623,10 @@ bad:
19607
19623
  PyCode_NewWithPosOnlyArgs
19608
19624
  #endif
19609
19625
  (a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, name, fline, lnos, __pyx_mstate_global->__pyx_empty_bytes);
19626
+ #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030c00A1
19627
+ if (likely(result))
19628
+ result->_co_firsttraceable = 0;
19629
+ #endif
19610
19630
  return result;
19611
19631
  }
19612
19632
  #elif PY_VERSION_HEX >= 0x030800B2 && !CYTHON_COMPILING_IN_PYPY
Binary file
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.4 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -29,8 +29,8 @@ END: Cython Metadata */
29
29
  #elif PY_VERSION_HEX < 0x03080000
30
30
  #error Cython requires Python 3.8+.
31
31
  #else
32
- #define __PYX_ABI_VERSION "3_1_2"
33
- #define CYTHON_HEX_VERSION 0x030102F0
32
+ #define __PYX_ABI_VERSION "3_1_4"
33
+ #define CYTHON_HEX_VERSION 0x030104F0
34
34
  #define CYTHON_FUTURE_DIVISION 1
35
35
  /* CModulePreamble */
36
36
  #include <stddef.h>
@@ -393,6 +393,9 @@ END: Cython Metadata */
393
393
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
394
394
  #endif
395
395
  #endif
396
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
397
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
398
+ #endif
396
399
  #ifndef __has_attribute
397
400
  #define __has_attribute(x) 0
398
401
  #endif
@@ -2017,18 +2020,18 @@ static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact,
2017
2020
  if (!__Pyx_PyThreadState_Current->tracing) {\
2018
2021
  if (likely(__pyx_frame_code)) Py_INCREF(__pyx_frame_code);\
2019
2022
  else __pyx_frame_code = (PyObject*) __Pyx_createFrameCodeObject(funcname, srcfile, firstlineno);\
2020
- if (unlikely(!__pyx_frame_code)) goto_error;\
2021
- ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
2022
- }\
2023
+ if (unlikely(!__pyx_frame_code)) ret = -1;\
2024
+ else ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
2025
+ } else __pyx_frame_code = NULL;\
2023
2026
  PyGILState_Release(state);\
2024
- }\
2027
+ } else __pyx_frame_code = NULL;\
2025
2028
  } else {\
2026
2029
  if (!__Pyx_PyThreadState_Current->tracing) {\
2027
2030
  if (likely(__pyx_frame_code)) Py_INCREF(__pyx_frame_code);\
2028
2031
  else __pyx_frame_code = (PyObject*) __Pyx_createFrameCodeObject(funcname, srcfile, firstlineno);\
2029
- if (unlikely(!__pyx_frame_code)) goto_error;\
2030
- ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
2031
- }\
2032
+ if (unlikely(!__pyx_frame_code)) ret = -1;\
2033
+ else ret = __Pyx__TraceStartFunc(__pyx_pymonitoring_state, __pyx_frame_code, offset, skip_event);\
2034
+ } else __pyx_frame_code = NULL;\
2032
2035
  }\
2033
2036
  if (unlikely(ret == -1)) goto_error;\
2034
2037
  }
@@ -2499,7 +2502,7 @@ static CYTHON_INLINE PyObject *__Pyx_GetAttr(PyObject *, PyObject *);
2499
2502
  static PyObject *__Pyx_PyLong_AbsNeg(PyObject *num);
2500
2503
  #define __Pyx_PyNumber_Absolute(x)\
2501
2504
  ((likely(PyLong_CheckExact(x))) ?\
2502
- (likely(__Pyx_PyLong_IsNonNeg(x)) ? (Py_INCREF(x), (x)) : __Pyx_PyLong_AbsNeg(x)) :\
2505
+ (likely(__Pyx_PyLong_IsNonNeg(x)) ? __Pyx_NewRef(x) : __Pyx_PyLong_AbsNeg(x)) :\
2503
2506
  PyNumber_Absolute(x))
2504
2507
  #else
2505
2508
  #define __Pyx_PyNumber_Absolute(x) PyNumber_Absolute(x)
@@ -3267,7 +3270,7 @@ static const char __pyx_k_ne[] = "__ne__";
3267
3270
  static const char __pyx_k_or[] = "__or__";
3268
3271
  static const char __pyx_k_A_2[] = "\200A\330\010\016\320\016!\240\021\330\020\021";
3269
3272
  static const char __pyx_k_A_L[] = "\200A\330\010\014\210L\230\001\230\027\240\001";
3270
- static const char __pyx_k_A_a[] = "\200A\330\010\020\220\001\220\026\220\240a\360\020\000\t\n";
3273
+ static const char __pyx_k_A_a[] = "\200A\330\010\020\220\001\220\026\220\177\240a\360\020\000\t\n";
3271
3274
  static const char __pyx_k_A_t[] = "\200A\330\010\017\210t\220=\240\002\240!";
3272
3275
  static const char __pyx_k_abs[] = "__abs__";
3273
3276
  static const char __pyx_k_add[] = "__add__";
@@ -24094,7 +24097,7 @@ __Pyx_RefNannySetupContext("PyInit_proxy", 0);
24094
24097
  * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
24095
24098
  * raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
24096
24099
  */
24097
- __Pyx_TraceLine(3,3,0,__PYX_ERR(1, 3, __pyx_L1_error))
24100
+ __Pyx_TraceLine(3,4,0,__PYX_ERR(1, 3, __pyx_L1_error))
24098
24101
  __pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_14async_property_5proxy_13AwaitableOnly_9__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_AwaitableOnly___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_async_property_proxy, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[4])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 3, __pyx_L1_error)
24099
24102
  __Pyx_GOTREF(__pyx_t_3);
24100
24103
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_3) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
@@ -28567,7 +28570,7 @@ static PyObject *__Pyx_PyLong_AbsNeg(PyObject *n) {
28567
28570
  PyObject *copy = _PyLong_Copy((PyLongObject*)n);
28568
28571
  if (likely(copy)) {
28569
28572
  #if PY_VERSION_HEX >= 0x030C00A7
28570
- ((PyLongObject*)copy)->long_value.lv_tag = ((PyLongObject*)copy)->long_value.lv_tag & ~_PyLong_SIGN_MASK;
28573
+ ((PyLongObject*)copy)->long_value.lv_tag ^= ((PyLongObject*)copy)->long_value.lv_tag & _PyLong_SIGN_MASK;
28571
28574
  #else
28572
28575
  __Pyx_SET_SIZE(copy, -Py_SIZE(copy));
28573
28576
  #endif
@@ -29094,6 +29097,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
29094
29097
  changed = 1;
29095
29098
  }
29096
29099
  #endif // CYTHON_METH_FASTCALL
29100
+ #if !CYTHON_COMPILING_IN_PYPY
29097
29101
  else if (strcmp(memb->name, "__module__") == 0) {
29098
29102
  PyObject *descr;
29099
29103
  assert(memb->type == T_OBJECT);
@@ -29108,11 +29112,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
29108
29112
  }
29109
29113
  changed = 1;
29110
29114
  }
29115
+ #endif // !CYTHON_COMPILING_IN_PYPY
29111
29116
  }
29112
29117
  memb++;
29113
29118
  }
29114
29119
  }
29115
29120
  #endif // !CYTHON_COMPILING_IN_LIMITED_API
29121
+ #if !CYTHON_COMPILING_IN_PYPY
29116
29122
  slot = spec->slots;
29117
29123
  while (slot && slot->slot && slot->slot != Py_tp_getset)
29118
29124
  slot++;
@@ -29144,6 +29150,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
29144
29150
  ++getset;
29145
29151
  }
29146
29152
  }
29153
+ #endif // !CYTHON_COMPILING_IN_PYPY
29147
29154
  if (changed)
29148
29155
  PyType_Modified(type);
29149
29156
  #endif // PY_VERSION_HEX > 0x030900B1
@@ -29276,7 +29283,7 @@ bad:
29276
29283
  }
29277
29284
 
29278
29285
  /* CommonTypesMetaclass */
29279
- PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
29286
+ static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
29280
29287
  return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
29281
29288
  }
29282
29289
  static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
@@ -29305,6 +29312,7 @@ static int __pyx_CommonTypesMetaclass_init(PyObject *module) {
29305
29312
  return -1;
29306
29313
  }
29307
29314
  mstate->__pyx_CommonTypesMetaclassType = __Pyx_FetchCommonTypeFromSpec(NULL, module, &__pyx_CommonTypesMetaclass_spec, bases);
29315
+ Py_DECREF(bases);
29308
29316
  if (unlikely(mstate->__pyx_CommonTypesMetaclassType == NULL)) {
29309
29317
  return -1;
29310
29318
  }
@@ -29504,7 +29512,7 @@ try_unpack:
29504
29512
  }
29505
29513
 
29506
29514
  /* PyObjectCallMethod1 */
29507
- #if !(CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000)
29515
+ #if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)))
29508
29516
  static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
29509
29517
  PyObject *result = __Pyx_PyObject_CallOneArg(method, arg);
29510
29518
  Py_DECREF(method);
@@ -29512,7 +29520,7 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
29512
29520
  }
29513
29521
  #endif
29514
29522
  static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) {
29515
- #if CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000
29523
+ #if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
29516
29524
  PyObject *args[2] = {obj, arg};
29517
29525
  (void) __Pyx_PyObject_GetMethod;
29518
29526
  (void) __Pyx_PyObject_CallOneArg;
@@ -31063,6 +31071,13 @@ bad:
31063
31071
 
31064
31072
  /* PyObjectCallMethod0 */
31065
31073
  static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
31074
+ #if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
31075
+ PyObject *args[1] = {obj};
31076
+ (void) __Pyx_PyObject_GetMethod;
31077
+ (void) __Pyx_PyObject_CallOneArg;
31078
+ (void) __Pyx_PyObject_CallNoArg;
31079
+ return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
31080
+ #else
31066
31081
  PyObject *method = NULL, *result = NULL;
31067
31082
  int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
31068
31083
  if (likely(is_method)) {
@@ -31075,6 +31090,7 @@ bad:
31075
31090
  Py_DECREF(method);
31076
31091
  bad:
31077
31092
  return result;
31093
+ #endif
31078
31094
  }
31079
31095
 
31080
31096
  /* ValidateBasesTuple */
@@ -34080,6 +34096,10 @@ static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObj
34080
34096
  PyCode_NewWithPosOnlyArgs
34081
34097
  #endif
34082
34098
  (a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, name, fline, lnos, __pyx_mstate_global->__pyx_empty_bytes);
34099
+ #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030c00A1
34100
+ if (likely(result))
34101
+ result->_co_firsttraceable = 0;
34102
+ #endif
34083
34103
  return result;
34084
34104
  }
34085
34105
  #elif PY_VERSION_HEX >= 0x030800B2 && !CYTHON_COMPILING_IN_PYPY
Binary file