ez-a-sync 0.32.12__cp39-cp39-win32.whl → 0.32.13__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 (39) hide show
  1. a_sync/_smart.cp39-win32.pyd +0 -0
  2. a_sync/a_sync/_descriptor.cp39-win32.pyd +0 -0
  3. a_sync/a_sync/_flags.cp39-win32.pyd +0 -0
  4. a_sync/a_sync/_helpers.cp39-win32.pyd +0 -0
  5. a_sync/a_sync/_kwargs.cp39-win32.pyd +0 -0
  6. a_sync/a_sync/abstract.cp39-win32.pyd +0 -0
  7. a_sync/a_sync/base.cp39-win32.pyd +0 -0
  8. a_sync/a_sync/flags.cp39-win32.pyd +0 -0
  9. a_sync/a_sync/function.cp39-win32.pyd +0 -0
  10. a_sync/a_sync/method.cp39-win32.pyd +0 -0
  11. a_sync/a_sync/modifiers/manager.cp39-win32.pyd +0 -0
  12. a_sync/a_sync/property.cp39-win32.pyd +0 -0
  13. a_sync/async_property/cached.cp39-win32.pyd +0 -0
  14. a_sync/async_property/proxy.cp39-win32.pyd +0 -0
  15. a_sync/asyncio/as_completed.cp39-win32.pyd +0 -0
  16. a_sync/asyncio/create_task.cp39-win32.pyd +0 -0
  17. a_sync/asyncio/gather.cp39-win32.pyd +0 -0
  18. a_sync/asyncio/igather.cp39-win32.pyd +0 -0
  19. a_sync/asyncio/sleep.cp39-win32.pyd +0 -0
  20. a_sync/debugging.c +3 -2
  21. a_sync/debugging.cp39-win32.pyd +0 -0
  22. a_sync/exceptions.cp39-win32.pyd +0 -0
  23. a_sync/functools.cp39-win32.pyd +0 -0
  24. a_sync/iter.c +216 -81
  25. a_sync/iter.cp39-win32.pyd +0 -0
  26. a_sync/iter.pxd +2 -0
  27. a_sync/primitives/_debug.cp39-win32.pyd +0 -0
  28. a_sync/primitives/_loggable.cp39-win32.pyd +0 -0
  29. a_sync/primitives/locks/counter.cp39-win32.pyd +0 -0
  30. a_sync/primitives/locks/event.cp39-win32.pyd +0 -0
  31. a_sync/primitives/locks/prio_semaphore.cp39-win32.pyd +0 -0
  32. a_sync/primitives/locks/semaphore.cp39-win32.pyd +0 -0
  33. a_sync/task.py +22 -6
  34. a_sync/utils/repr.cp39-win32.pyd +0 -0
  35. {ez_a_sync-0.32.12.dist-info → ez_a_sync-0.32.13.dist-info}/METADATA +1 -1
  36. {ez_a_sync-0.32.12.dist-info → ez_a_sync-0.32.13.dist-info}/RECORD +39 -39
  37. {ez_a_sync-0.32.12.dist-info → ez_a_sync-0.32.13.dist-info}/WHEEL +1 -1
  38. {ez_a_sync-0.32.12.dist-info → ez_a_sync-0.32.13.dist-info}/licenses/LICENSE.txt +0 -0
  39. {ez_a_sync-0.32.12.dist-info → ez_a_sync-0.32.13.dist-info}/top_level.txt +0 -0
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
a_sync/debugging.c CHANGED
@@ -1517,12 +1517,13 @@ struct __pyx_defaults {
1517
1517
  *
1518
1518
  * cdef class _ASyncGeneratorFunction: # <<<<<<<<<<<<<<
1519
1519
  * cdef readonly object _cache_handle
1520
- * cdef readonly object __weakself__
1520
+ * # must be public for functools.wraps
1521
1521
  */
1522
1522
  struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction {
1523
1523
  PyObject_HEAD
1524
1524
  struct __pyx_vtabstruct_6a_sync_4iter__ASyncGeneratorFunction *__pyx_vtab;
1525
1525
  PyObject *_cache_handle;
1526
+ PyObject *__wrapped__;
1526
1527
  PyObject *__weakself__;
1527
1528
  PyObject *_ASyncGeneratorFunction__weakself_ptr;
1528
1529
  };
@@ -1609,7 +1610,7 @@ struct __pyx_obj_6a_sync_9debugging___pyx_scope_struct_3__stuck_debug_task {
1609
1610
  *
1610
1611
  * cdef class _ASyncGeneratorFunction: # <<<<<<<<<<<<<<
1611
1612
  * cdef readonly object _cache_handle
1612
- * cdef readonly object __weakself__
1613
+ * # must be public for functools.wraps
1613
1614
  */
1614
1615
 
1615
1616
  struct __pyx_vtabstruct_6a_sync_4iter__ASyncGeneratorFunction {
Binary file
Binary file
Binary file
a_sync/iter.c CHANGED
@@ -1603,12 +1603,13 @@ struct __pyx_obj_6a_sync_9functools_cached_property_unsafe {
1603
1603
  *
1604
1604
  * cdef class _ASyncGeneratorFunction: # <<<<<<<<<<<<<<
1605
1605
  * cdef readonly object _cache_handle
1606
- * cdef readonly object __weakself__
1606
+ * # must be public for functools.wraps
1607
1607
  */
1608
1608
  struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction {
1609
1609
  PyObject_HEAD
1610
1610
  struct __pyx_vtabstruct_6a_sync_4iter__ASyncGeneratorFunction *__pyx_vtab;
1611
1611
  PyObject *_cache_handle;
1612
+ PyObject *__wrapped__;
1612
1613
  PyObject *__weakself__;
1613
1614
  PyObject *_ASyncGeneratorFunction__weakself_ptr;
1614
1615
  };
@@ -3705,6 +3706,9 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_4__call__(stru
3705
3706
  static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_6__get__(struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self, PyObject *__pyx_v_instance, CYTHON_UNUSED PyObject *__pyx_v_owner); /* proto */
3706
3707
  static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_8__self_____get__(struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self); /* proto */
3707
3708
  static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_13_cache_handle___get__(struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self); /* proto */
3709
+ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped_____get__(struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self); /* proto */
3710
+ static int __pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___2__set__(struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self, PyObject *__pyx_v_value); /* proto */
3711
+ static int __pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___4__del__(struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self); /* proto */
3708
3712
  static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_12__weakself_____get__(struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self); /* proto */
3709
3713
  static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_8__reduce_cython__(CYTHON_UNUSED struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self); /* proto */
3710
3714
  static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_10__setstate_cython__(CYTHON_UNUSED struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v___pyx_state); /* proto */
@@ -11498,7 +11502,11 @@ static int __pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction___init__(struct __py
11498
11502
  *
11499
11503
  */
11500
11504
  __Pyx_TraceLine(479,0,__PYX_ERR(0, 479, __pyx_L1_error))
11501
- if (__Pyx_PyObject_SetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_wrapped_2, __pyx_v_async_gen_func) < 0) __PYX_ERR(0, 479, __pyx_L1_error)
11505
+ __Pyx_INCREF(__pyx_v_async_gen_func);
11506
+ __Pyx_GIVEREF(__pyx_v_async_gen_func);
11507
+ __Pyx_GOTREF(__pyx_v_self->__wrapped__);
11508
+ __Pyx_DECREF(__pyx_v_self->__wrapped__);
11509
+ __pyx_v_self->__wrapped__ = __pyx_v_async_gen_func;
11502
11510
 
11503
11511
  /* "a_sync/iter.pyx":482
11504
11512
  * "The actual async generator function."
@@ -11696,8 +11704,7 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_2__repr__(stru
11696
11704
  PyObject *__pyx_t_3 = NULL;
11697
11705
  PyObject *__pyx_t_4 = NULL;
11698
11706
  PyObject *__pyx_t_5 = NULL;
11699
- PyObject *__pyx_t_6 = NULL;
11700
- unsigned int __pyx_t_7;
11707
+ unsigned int __pyx_t_6;
11701
11708
  int __pyx_lineno = 0;
11702
11709
  const char *__pyx_filename = NULL;
11703
11710
  int __pyx_clineno = 0;
@@ -11727,17 +11734,6 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_2__repr__(stru
11727
11734
  __pyx_t_3 = __Pyx_PyObject_GetAttrStr(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self))), __pyx_n_s_name); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 494, __pyx_L1_error)
11728
11735
  __Pyx_GOTREF(__pyx_t_3);
11729
11736
 
11730
- /* "a_sync/iter.pyx":495
11731
- * return "<{} for {} at {}>".format(
11732
- * type(self).__name__,
11733
- * self.__wrapped__, # <<<<<<<<<<<<<<
11734
- * hex(id(self))
11735
- * )
11736
- */
11737
- __Pyx_TraceLine(495,0,__PYX_ERR(0, 495, __pyx_L1_error))
11738
- __pyx_t_4 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_wrapped_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 495, __pyx_L1_error)
11739
- __Pyx_GOTREF(__pyx_t_4);
11740
-
11741
11737
  /* "a_sync/iter.pyx":496
11742
11738
  * type(self).__name__,
11743
11739
  * self.__wrapped__,
@@ -11746,32 +11742,31 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_2__repr__(stru
11746
11742
  *
11747
11743
  */
11748
11744
  __Pyx_TraceLine(496,0,__PYX_ERR(0, 496, __pyx_L1_error))
11749
- __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_builtin_id, ((PyObject *)__pyx_v_self)); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 496, __pyx_L1_error)
11745
+ __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_builtin_id, ((PyObject *)__pyx_v_self)); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 496, __pyx_L1_error)
11746
+ __Pyx_GOTREF(__pyx_t_4);
11747
+ __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_builtin_hex, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 496, __pyx_L1_error)
11750
11748
  __Pyx_GOTREF(__pyx_t_5);
11751
- __pyx_t_6 = __Pyx_PyObject_CallOneArg(__pyx_builtin_hex, __pyx_t_5); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 496, __pyx_L1_error)
11752
- __Pyx_GOTREF(__pyx_t_6);
11753
- __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
11754
- __pyx_t_5 = NULL;
11755
- __pyx_t_7 = 0;
11749
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
11750
+ __pyx_t_4 = NULL;
11751
+ __pyx_t_6 = 0;
11756
11752
  #if CYTHON_UNPACK_METHODS
11757
11753
  if (likely(PyMethod_Check(__pyx_t_2))) {
11758
- __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_2);
11759
- if (likely(__pyx_t_5)) {
11754
+ __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_2);
11755
+ if (likely(__pyx_t_4)) {
11760
11756
  PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2);
11761
- __Pyx_INCREF(__pyx_t_5);
11757
+ __Pyx_INCREF(__pyx_t_4);
11762
11758
  __Pyx_INCREF(function);
11763
11759
  __Pyx_DECREF_SET(__pyx_t_2, function);
11764
- __pyx_t_7 = 1;
11760
+ __pyx_t_6 = 1;
11765
11761
  }
11766
11762
  }
11767
11763
  #endif
11768
11764
  {
11769
- PyObject *__pyx_callargs[4] = {__pyx_t_5, __pyx_t_3, __pyx_t_4, __pyx_t_6};
11770
- __pyx_t_1 = __Pyx_PyObject_FastCall(__pyx_t_2, __pyx_callargs+1-__pyx_t_7, 3+__pyx_t_7);
11771
- __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0;
11765
+ PyObject *__pyx_callargs[4] = {__pyx_t_4, __pyx_t_3, __pyx_v_self->__wrapped__, __pyx_t_5};
11766
+ __pyx_t_1 = __Pyx_PyObject_FastCall(__pyx_t_2, __pyx_callargs+1-__pyx_t_6, 3+__pyx_t_6);
11767
+ __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
11772
11768
  __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
11773
- __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
11774
- __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
11769
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
11775
11770
  if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 493, __pyx_L1_error)
11776
11771
  __Pyx_GOTREF(__pyx_t_1);
11777
11772
  __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
@@ -11795,7 +11790,6 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_2__repr__(stru
11795
11790
  __Pyx_XDECREF(__pyx_t_3);
11796
11791
  __Pyx_XDECREF(__pyx_t_4);
11797
11792
  __Pyx_XDECREF(__pyx_t_5);
11798
- __Pyx_XDECREF(__pyx_t_6);
11799
11793
  __Pyx_AddTraceback("a_sync.iter._ASyncGeneratorFunction.__repr__", __pyx_clineno, __pyx_lineno, __pyx_filename);
11800
11794
  __pyx_r = NULL;
11801
11795
  __pyx_L0:;
@@ -11863,9 +11857,8 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_4__call__(stru
11863
11857
  PyObject *__pyx_t_3 = NULL;
11864
11858
  PyObject *__pyx_t_4 = NULL;
11865
11859
  PyObject *__pyx_t_5 = NULL;
11866
- PyObject *__pyx_t_6 = NULL;
11867
- unsigned int __pyx_t_7;
11868
- PyObject *__pyx_t_8 = NULL;
11860
+ unsigned int __pyx_t_6;
11861
+ PyObject *__pyx_t_7 = NULL;
11869
11862
  int __pyx_lineno = 0;
11870
11863
  const char *__pyx_filename = NULL;
11871
11864
  int __pyx_clineno = 0;
@@ -11894,33 +11887,30 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_4__call__(stru
11894
11887
  __Pyx_XDECREF(__pyx_r);
11895
11888
  __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_ASyncIterator); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 507, __pyx_L1_error)
11896
11889
  __Pyx_GOTREF(__pyx_t_3);
11897
- __pyx_t_4 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_wrapped_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 507, __pyx_L1_error)
11890
+ __pyx_t_4 = PyDict_Copy(__pyx_v_kwargs); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 507, __pyx_L1_error)
11898
11891
  __Pyx_GOTREF(__pyx_t_4);
11899
- __pyx_t_5 = PyDict_Copy(__pyx_v_kwargs); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 507, __pyx_L1_error)
11892
+ __pyx_t_5 = __Pyx_PyObject_Call(__pyx_v_self->__wrapped__, __pyx_v_args, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 507, __pyx_L1_error)
11900
11893
  __Pyx_GOTREF(__pyx_t_5);
11901
- __pyx_t_6 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_v_args, __pyx_t_5); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 507, __pyx_L1_error)
11902
- __Pyx_GOTREF(__pyx_t_6);
11903
11894
  __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
11904
- __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
11905
- __pyx_t_5 = NULL;
11906
- __pyx_t_7 = 0;
11895
+ __pyx_t_4 = NULL;
11896
+ __pyx_t_6 = 0;
11907
11897
  #if CYTHON_UNPACK_METHODS
11908
11898
  if (unlikely(PyMethod_Check(__pyx_t_3))) {
11909
- __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3);
11910
- if (likely(__pyx_t_5)) {
11899
+ __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3);
11900
+ if (likely(__pyx_t_4)) {
11911
11901
  PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3);
11912
- __Pyx_INCREF(__pyx_t_5);
11902
+ __Pyx_INCREF(__pyx_t_4);
11913
11903
  __Pyx_INCREF(function);
11914
11904
  __Pyx_DECREF_SET(__pyx_t_3, function);
11915
- __pyx_t_7 = 1;
11905
+ __pyx_t_6 = 1;
11916
11906
  }
11917
11907
  }
11918
11908
  #endif
11919
11909
  {
11920
- PyObject *__pyx_callargs[2] = {__pyx_t_5, __pyx_t_6};
11921
- __pyx_t_2 = __Pyx_PyObject_FastCall(__pyx_t_3, __pyx_callargs+1-__pyx_t_7, 1+__pyx_t_7);
11922
- __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0;
11923
- __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
11910
+ PyObject *__pyx_callargs[2] = {__pyx_t_4, __pyx_t_5};
11911
+ __pyx_t_2 = __Pyx_PyObject_FastCall(__pyx_t_3, __pyx_callargs+1-__pyx_t_6, 1+__pyx_t_6);
11912
+ __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
11913
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
11924
11914
  if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 507, __pyx_L1_error)
11925
11915
  __Pyx_GOTREF(__pyx_t_2);
11926
11916
  __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
@@ -11949,8 +11939,6 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_4__call__(stru
11949
11939
  __Pyx_XDECREF(__pyx_r);
11950
11940
  __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_ASyncIterator); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 508, __pyx_L1_error)
11951
11941
  __Pyx_GOTREF(__pyx_t_3);
11952
- __pyx_t_6 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_wrapped_2); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 508, __pyx_L1_error)
11953
- __Pyx_GOTREF(__pyx_t_6);
11954
11942
  __pyx_t_5 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_self_2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 508, __pyx_L1_error)
11955
11943
  __Pyx_GOTREF(__pyx_t_5);
11956
11944
  __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 508, __pyx_L1_error)
@@ -11963,13 +11951,12 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_4__call__(stru
11963
11951
  __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
11964
11952
  __pyx_t_4 = PyDict_Copy(__pyx_v_kwargs); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 508, __pyx_L1_error)
11965
11953
  __Pyx_GOTREF(__pyx_t_4);
11966
- __pyx_t_8 = __Pyx_PyObject_Call(__pyx_t_6, __pyx_t_5, __pyx_t_4); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 508, __pyx_L1_error)
11967
- __Pyx_GOTREF(__pyx_t_8);
11968
- __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
11954
+ __pyx_t_7 = __Pyx_PyObject_Call(__pyx_v_self->__wrapped__, __pyx_t_5, __pyx_t_4); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 508, __pyx_L1_error)
11955
+ __Pyx_GOTREF(__pyx_t_7);
11969
11956
  __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
11970
11957
  __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
11971
11958
  __pyx_t_4 = NULL;
11972
- __pyx_t_7 = 0;
11959
+ __pyx_t_6 = 0;
11973
11960
  #if CYTHON_UNPACK_METHODS
11974
11961
  if (unlikely(PyMethod_Check(__pyx_t_3))) {
11975
11962
  __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3);
@@ -11978,15 +11965,15 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_4__call__(stru
11978
11965
  __Pyx_INCREF(__pyx_t_4);
11979
11966
  __Pyx_INCREF(function);
11980
11967
  __Pyx_DECREF_SET(__pyx_t_3, function);
11981
- __pyx_t_7 = 1;
11968
+ __pyx_t_6 = 1;
11982
11969
  }
11983
11970
  }
11984
11971
  #endif
11985
11972
  {
11986
- PyObject *__pyx_callargs[2] = {__pyx_t_4, __pyx_t_8};
11987
- __pyx_t_2 = __Pyx_PyObject_FastCall(__pyx_t_3, __pyx_callargs+1-__pyx_t_7, 1+__pyx_t_7);
11973
+ PyObject *__pyx_callargs[2] = {__pyx_t_4, __pyx_t_7};
11974
+ __pyx_t_2 = __Pyx_PyObject_FastCall(__pyx_t_3, __pyx_callargs+1-__pyx_t_6, 1+__pyx_t_6);
11988
11975
  __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
11989
- __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
11976
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
11990
11977
  if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 508, __pyx_L1_error)
11991
11978
  __Pyx_GOTREF(__pyx_t_2);
11992
11979
  __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
@@ -12009,8 +11996,7 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_4__call__(stru
12009
11996
  __Pyx_XDECREF(__pyx_t_3);
12010
11997
  __Pyx_XDECREF(__pyx_t_4);
12011
11998
  __Pyx_XDECREF(__pyx_t_5);
12012
- __Pyx_XDECREF(__pyx_t_6);
12013
- __Pyx_XDECREF(__pyx_t_8);
11999
+ __Pyx_XDECREF(__pyx_t_7);
12014
12000
  __Pyx_AddTraceback("a_sync.iter._ASyncGeneratorFunction.__call__", __pyx_clineno, __pyx_lineno, __pyx_filename);
12015
12001
  __pyx_r = NULL;
12016
12002
  __pyx_L0:;
@@ -12064,8 +12050,7 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_6__get__(struc
12064
12050
  PyObject *__pyx_t_9 = NULL;
12065
12051
  PyObject *__pyx_t_10 = NULL;
12066
12052
  PyObject *__pyx_t_11 = NULL;
12067
- PyObject *__pyx_t_12 = NULL;
12068
- unsigned int __pyx_t_13;
12053
+ unsigned int __pyx_t_12;
12069
12054
  int __pyx_lineno = 0;
12070
12055
  const char *__pyx_filename = NULL;
12071
12056
  int __pyx_clineno = 0;
@@ -12199,27 +12184,24 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_6__get__(struc
12199
12184
  __Pyx_TraceLine(523,0,__PYX_ERR(0, 523, __pyx_L6_except_error))
12200
12185
  __Pyx_GetModuleGlobalName(__pyx_t_10, __pyx_n_s_ASyncGeneratorFunction); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 523, __pyx_L6_except_error)
12201
12186
  __Pyx_GOTREF(__pyx_t_10);
12202
- __pyx_t_11 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_n_s_wrapped_2); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 523, __pyx_L6_except_error)
12203
- __Pyx_GOTREF(__pyx_t_11);
12204
- __pyx_t_12 = NULL;
12205
- __pyx_t_13 = 0;
12187
+ __pyx_t_11 = NULL;
12188
+ __pyx_t_12 = 0;
12206
12189
  #if CYTHON_UNPACK_METHODS
12207
12190
  if (unlikely(PyMethod_Check(__pyx_t_10))) {
12208
- __pyx_t_12 = PyMethod_GET_SELF(__pyx_t_10);
12209
- if (likely(__pyx_t_12)) {
12191
+ __pyx_t_11 = PyMethod_GET_SELF(__pyx_t_10);
12192
+ if (likely(__pyx_t_11)) {
12210
12193
  PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_10);
12211
- __Pyx_INCREF(__pyx_t_12);
12194
+ __Pyx_INCREF(__pyx_t_11);
12212
12195
  __Pyx_INCREF(function);
12213
12196
  __Pyx_DECREF_SET(__pyx_t_10, function);
12214
- __pyx_t_13 = 1;
12197
+ __pyx_t_12 = 1;
12215
12198
  }
12216
12199
  }
12217
12200
  #endif
12218
12201
  {
12219
- PyObject *__pyx_callargs[3] = {__pyx_t_12, __pyx_t_11, __pyx_v_instance};
12220
- __pyx_t_9 = __Pyx_PyObject_FastCall(__pyx_t_10, __pyx_callargs+1-__pyx_t_13, 2+__pyx_t_13);
12221
- __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0;
12222
- __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
12202
+ PyObject *__pyx_callargs[3] = {__pyx_t_11, __pyx_v_self->__wrapped__, __pyx_v_instance};
12203
+ __pyx_t_9 = __Pyx_PyObject_FastCall(__pyx_t_10, __pyx_callargs+1-__pyx_t_12, 2+__pyx_t_12);
12204
+ __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0;
12223
12205
  if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 523, __pyx_L6_except_error)
12224
12206
  __Pyx_GOTREF(__pyx_t_9);
12225
12207
  __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
@@ -12314,7 +12296,6 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_6__get__(struc
12314
12296
  __Pyx_XDECREF(__pyx_t_9);
12315
12297
  __Pyx_XDECREF(__pyx_t_10);
12316
12298
  __Pyx_XDECREF(__pyx_t_11);
12317
- __Pyx_XDECREF(__pyx_t_12);
12318
12299
  __Pyx_AddTraceback("a_sync.iter._ASyncGeneratorFunction.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename);
12319
12300
  __pyx_r = NULL;
12320
12301
  __pyx_L0:;
@@ -12766,8 +12747,8 @@ static void __pyx_f_6a_sync_4iter_23_ASyncGeneratorFunction__ASyncGeneratorFunct
12766
12747
  *
12767
12748
  * cdef class _ASyncGeneratorFunction:
12768
12749
  * cdef readonly object _cache_handle # <<<<<<<<<<<<<<
12769
- * cdef readonly object __weakself__
12770
- * cdef PyObject *__weakself_ptr
12750
+ * # must be public for functools.wraps
12751
+ * cdef public object __wrapped__
12771
12752
  */
12772
12753
 
12773
12754
  /* Python wrapper */
@@ -12810,9 +12791,141 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_13_cache_handl
12810
12791
  return __pyx_r;
12811
12792
  }
12812
12793
 
12813
- /* "a_sync/iter.pxd":5
12814
- * cdef class _ASyncGeneratorFunction:
12794
+ /* "a_sync/iter.pxd":6
12815
12795
  * cdef readonly object _cache_handle
12796
+ * # must be public for functools.wraps
12797
+ * cdef public object __wrapped__ # <<<<<<<<<<<<<<
12798
+ * cdef readonly object __weakself__
12799
+ * cdef PyObject *__weakself_ptr
12800
+ */
12801
+
12802
+ /* Python wrapper */
12803
+ static PyObject *__pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___1__get__(PyObject *__pyx_v_self); /*proto*/
12804
+ static PyObject *__pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___1__get__(PyObject *__pyx_v_self) {
12805
+ CYTHON_UNUSED PyObject *const *__pyx_kwvalues;
12806
+ PyObject *__pyx_r = 0;
12807
+ __Pyx_RefNannyDeclarations
12808
+ __Pyx_RefNannySetupContext("__get__ (wrapper)", 0);
12809
+ __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs);
12810
+ __pyx_r = __pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped_____get__(((struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *)__pyx_v_self));
12811
+
12812
+ /* function exit code */
12813
+ __Pyx_RefNannyFinishContext();
12814
+ return __pyx_r;
12815
+ }
12816
+
12817
+ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped_____get__(struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self) {
12818
+ PyObject *__pyx_r = NULL;
12819
+ __Pyx_TraceDeclarations
12820
+ __Pyx_RefNannyDeclarations
12821
+ int __pyx_lineno = 0;
12822
+ const char *__pyx_filename = NULL;
12823
+ int __pyx_clineno = 0;
12824
+ __Pyx_RefNannySetupContext("__get__", 1);
12825
+ __Pyx_TraceCall("__get__", __pyx_f[2], 6, 0, __PYX_ERR(2, 6, __pyx_L1_error));
12826
+ __Pyx_XDECREF(__pyx_r);
12827
+ __Pyx_INCREF(__pyx_v_self->__wrapped__);
12828
+ __pyx_r = __pyx_v_self->__wrapped__;
12829
+ goto __pyx_L0;
12830
+
12831
+ /* function exit code */
12832
+ __pyx_L1_error:;
12833
+ __Pyx_AddTraceback("a_sync.iter._ASyncGeneratorFunction.__wrapped__.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename);
12834
+ __pyx_r = NULL;
12835
+ __pyx_L0:;
12836
+ __Pyx_XGIVEREF(__pyx_r);
12837
+ __Pyx_TraceReturn(__pyx_r, 0);
12838
+ __Pyx_RefNannyFinishContext();
12839
+ return __pyx_r;
12840
+ }
12841
+
12842
+ /* Python wrapper */
12843
+ static int __pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___3__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_value); /*proto*/
12844
+ static int __pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___3__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_value) {
12845
+ CYTHON_UNUSED PyObject *const *__pyx_kwvalues;
12846
+ int __pyx_r;
12847
+ __Pyx_RefNannyDeclarations
12848
+ __Pyx_RefNannySetupContext("__set__ (wrapper)", 0);
12849
+ __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs);
12850
+ __pyx_r = __pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___2__set__(((struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *)__pyx_v_self), ((PyObject *)__pyx_v_value));
12851
+
12852
+ /* function exit code */
12853
+ __Pyx_RefNannyFinishContext();
12854
+ return __pyx_r;
12855
+ }
12856
+
12857
+ static int __pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___2__set__(struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self, PyObject *__pyx_v_value) {
12858
+ int __pyx_r;
12859
+ __Pyx_TraceDeclarations
12860
+ __Pyx_RefNannyDeclarations
12861
+ int __pyx_lineno = 0;
12862
+ const char *__pyx_filename = NULL;
12863
+ int __pyx_clineno = 0;
12864
+ __Pyx_RefNannySetupContext("__set__", 1);
12865
+ __Pyx_TraceCall("__set__", __pyx_f[2], 6, 0, __PYX_ERR(2, 6, __pyx_L1_error));
12866
+ __Pyx_INCREF(__pyx_v_value);
12867
+ __Pyx_GIVEREF(__pyx_v_value);
12868
+ __Pyx_GOTREF(__pyx_v_self->__wrapped__);
12869
+ __Pyx_DECREF(__pyx_v_self->__wrapped__);
12870
+ __pyx_v_self->__wrapped__ = __pyx_v_value;
12871
+
12872
+ /* function exit code */
12873
+ __pyx_r = 0;
12874
+ goto __pyx_L0;
12875
+ __pyx_L1_error:;
12876
+ __Pyx_AddTraceback("a_sync.iter._ASyncGeneratorFunction.__wrapped__.__set__", __pyx_clineno, __pyx_lineno, __pyx_filename);
12877
+ __pyx_r = -1;
12878
+ __pyx_L0:;
12879
+ __Pyx_TraceReturn(Py_None, 0);
12880
+ __Pyx_RefNannyFinishContext();
12881
+ return __pyx_r;
12882
+ }
12883
+
12884
+ /* Python wrapper */
12885
+ static int __pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___5__del__(PyObject *__pyx_v_self); /*proto*/
12886
+ static int __pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___5__del__(PyObject *__pyx_v_self) {
12887
+ CYTHON_UNUSED PyObject *const *__pyx_kwvalues;
12888
+ int __pyx_r;
12889
+ __Pyx_RefNannyDeclarations
12890
+ __Pyx_RefNannySetupContext("__del__ (wrapper)", 0);
12891
+ __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs);
12892
+ __pyx_r = __pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___4__del__(((struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *)__pyx_v_self));
12893
+
12894
+ /* function exit code */
12895
+ __Pyx_RefNannyFinishContext();
12896
+ return __pyx_r;
12897
+ }
12898
+
12899
+ static int __pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___4__del__(struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *__pyx_v_self) {
12900
+ int __pyx_r;
12901
+ __Pyx_TraceDeclarations
12902
+ __Pyx_RefNannyDeclarations
12903
+ int __pyx_lineno = 0;
12904
+ const char *__pyx_filename = NULL;
12905
+ int __pyx_clineno = 0;
12906
+ __Pyx_RefNannySetupContext("__del__", 1);
12907
+ __Pyx_TraceCall("__del__", __pyx_f[2], 6, 0, __PYX_ERR(2, 6, __pyx_L1_error));
12908
+ __Pyx_INCREF(Py_None);
12909
+ __Pyx_GIVEREF(Py_None);
12910
+ __Pyx_GOTREF(__pyx_v_self->__wrapped__);
12911
+ __Pyx_DECREF(__pyx_v_self->__wrapped__);
12912
+ __pyx_v_self->__wrapped__ = Py_None;
12913
+
12914
+ /* function exit code */
12915
+ __pyx_r = 0;
12916
+ goto __pyx_L0;
12917
+ __pyx_L1_error:;
12918
+ __Pyx_AddTraceback("a_sync.iter._ASyncGeneratorFunction.__wrapped__.__del__", __pyx_clineno, __pyx_lineno, __pyx_filename);
12919
+ __pyx_r = -1;
12920
+ __pyx_L0:;
12921
+ __Pyx_TraceReturn(Py_None, 0);
12922
+ __Pyx_RefNannyFinishContext();
12923
+ return __pyx_r;
12924
+ }
12925
+
12926
+ /* "a_sync/iter.pxd":7
12927
+ * # must be public for functools.wraps
12928
+ * cdef public object __wrapped__
12816
12929
  * cdef readonly object __weakself__ # <<<<<<<<<<<<<<
12817
12930
  * cdef PyObject *__weakself_ptr
12818
12931
  * cdef inline void _set_cache_handle(self, object handle)
@@ -12841,7 +12954,7 @@ static PyObject *__pyx_pf_6a_sync_4iter_23_ASyncGeneratorFunction_12__weakself__
12841
12954
  const char *__pyx_filename = NULL;
12842
12955
  int __pyx_clineno = 0;
12843
12956
  __Pyx_RefNannySetupContext("__get__", 1);
12844
- __Pyx_TraceCall("__get__", __pyx_f[2], 5, 0, __PYX_ERR(2, 5, __pyx_L1_error));
12957
+ __Pyx_TraceCall("__get__", __pyx_f[2], 7, 0, __PYX_ERR(2, 7, __pyx_L1_error));
12845
12958
  __Pyx_XDECREF(__pyx_r);
12846
12959
  __Pyx_INCREF(__pyx_v_self->__weakself__);
12847
12960
  __pyx_r = __pyx_v_self->__weakself__;
@@ -21572,6 +21685,7 @@ static PyObject *__pyx_tp_new_6a_sync_4iter__ASyncGeneratorFunction(PyTypeObject
21572
21685
  p = ((struct __pyx_obj_6a_sync_4iter__ASyncGeneratorFunction *)o);
21573
21686
  p->__pyx_vtab = __pyx_vtabptr_6a_sync_4iter__ASyncGeneratorFunction;
21574
21687
  p->_cache_handle = Py_None; Py_INCREF(Py_None);
21688
+ p->__wrapped__ = Py_None; Py_INCREF(Py_None);
21575
21689
  p->__weakself__ = Py_None; Py_INCREF(Py_None);
21576
21690
  return o;
21577
21691
  }
@@ -21587,6 +21701,7 @@ static void __pyx_tp_dealloc_6a_sync_4iter__ASyncGeneratorFunction(PyObject *o)
21587
21701
  #endif
21588
21702
  PyObject_GC_UnTrack(o);
21589
21703
  Py_CLEAR(p->_cache_handle);
21704
+ Py_CLEAR(p->__wrapped__);
21590
21705
  Py_CLEAR(p->__weakself__);
21591
21706
  #if CYTHON_USE_TYPE_SLOTS || CYTHON_COMPILING_IN_PYPY
21592
21707
  (*Py_TYPE(o)->tp_free)(o);
@@ -21604,6 +21719,9 @@ static int __pyx_tp_traverse_6a_sync_4iter__ASyncGeneratorFunction(PyObject *o,
21604
21719
  if (p->_cache_handle) {
21605
21720
  e = (*v)(p->_cache_handle, a); if (e) return e;
21606
21721
  }
21722
+ if (p->__wrapped__) {
21723
+ e = (*v)(p->__wrapped__, a); if (e) return e;
21724
+ }
21607
21725
  if (p->__weakself__) {
21608
21726
  e = (*v)(p->__weakself__, a); if (e) return e;
21609
21727
  }
@@ -21616,6 +21734,9 @@ static int __pyx_tp_clear_6a_sync_4iter__ASyncGeneratorFunction(PyObject *o) {
21616
21734
  tmp = ((PyObject*)p->_cache_handle);
21617
21735
  p->_cache_handle = Py_None; Py_INCREF(Py_None);
21618
21736
  Py_XDECREF(tmp);
21737
+ tmp = ((PyObject*)p->__wrapped__);
21738
+ p->__wrapped__ = Py_None; Py_INCREF(Py_None);
21739
+ Py_XDECREF(tmp);
21619
21740
  tmp = ((PyObject*)p->__weakself__);
21620
21741
  p->__weakself__ = Py_None; Py_INCREF(Py_None);
21621
21742
  Py_XDECREF(tmp);
@@ -21638,6 +21759,19 @@ static PyObject *__pyx_getprop_6a_sync_4iter_23_ASyncGeneratorFunction__cache_ha
21638
21759
  return __pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_13_cache_handle_1__get__(o);
21639
21760
  }
21640
21761
 
21762
+ static PyObject *__pyx_getprop_6a_sync_4iter_23_ASyncGeneratorFunction___wrapped__(PyObject *o, CYTHON_UNUSED void *x) {
21763
+ return __pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___1__get__(o);
21764
+ }
21765
+
21766
+ static int __pyx_setprop_6a_sync_4iter_23_ASyncGeneratorFunction___wrapped__(PyObject *o, PyObject *v, CYTHON_UNUSED void *x) {
21767
+ if (v) {
21768
+ return __pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___3__set__(o, v);
21769
+ }
21770
+ else {
21771
+ return __pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_11__wrapped___5__del__(o);
21772
+ }
21773
+ }
21774
+
21641
21775
  static PyObject *__pyx_getprop_6a_sync_4iter_23_ASyncGeneratorFunction___weakself__(PyObject *o, CYTHON_UNUSED void *x) {
21642
21776
  return __pyx_pw_6a_sync_4iter_23_ASyncGeneratorFunction_12__weakself___1__get__(o);
21643
21777
  }
@@ -21656,6 +21790,7 @@ static PyMethodDef __pyx_methods_6a_sync_4iter__ASyncGeneratorFunction[] = {
21656
21790
  static struct PyGetSetDef __pyx_getsets_6a_sync_4iter__ASyncGeneratorFunction[] = {
21657
21791
  {(char *)"__self__", __pyx_getprop_6a_sync_4iter_23_ASyncGeneratorFunction___self__, 0, (char *)PyDoc_STR("_ASyncGeneratorFunction.__self__: object"), 0},
21658
21792
  {(char *)"_cache_handle", __pyx_getprop_6a_sync_4iter_23_ASyncGeneratorFunction__cache_handle, 0, (char *)0, 0},
21793
+ {(char *)"__wrapped__", __pyx_getprop_6a_sync_4iter_23_ASyncGeneratorFunction___wrapped__, __pyx_setprop_6a_sync_4iter_23_ASyncGeneratorFunction___wrapped__, (char *)PyDoc_STR("__wrapped__: object"), 0},
21659
21794
  {(char *)"__weakself__", __pyx_getprop_6a_sync_4iter_23_ASyncGeneratorFunction___weakself__, 0, (char *)0, 0},
21660
21795
  {0, 0, 0, 0, 0}
21661
21796
  };
Binary file
a_sync/iter.pxd CHANGED
@@ -2,6 +2,8 @@ from cpython.object cimport PyObject
2
2
 
3
3
  cdef class _ASyncGeneratorFunction:
4
4
  cdef readonly object _cache_handle
5
+ # must be public for functools.wraps
6
+ cdef public object __wrapped__
5
7
  cdef readonly object __weakself__
6
8
  cdef PyObject *__weakself_ptr
7
9
  cdef inline void _set_cache_handle(self, object handle)
Binary file
Binary file
a_sync/task.py CHANGED
@@ -43,6 +43,9 @@ logger = getLogger(__name__)
43
43
  MappingFn = Callable[Concatenate[K, P], Awaitable[V]]
44
44
 
45
45
 
46
+ _args = WeakKeyDictionary()
47
+
48
+
46
49
  class TaskMapping(DefaultDict[K, "Task[V]"], AsyncIterable[Tuple[K, V]]):
47
50
  """
48
51
  A mapping of keys to asynchronous tasks with additional functionality.
@@ -157,6 +160,9 @@ class TaskMapping(DefaultDict[K, "Task[V]"], AsyncIterable[Tuple[K, V]]):
157
160
 
158
161
  if iterables:
159
162
 
163
+ set_next = self._next.set
164
+ clear_next = self._next.clear
165
+
160
166
  @wraps(wrapped_func)
161
167
  async def _wrapped_set_next(
162
168
  *args: P.args, __a_sync_recursion: int = 0, **kwargs: P.kwargs
@@ -167,17 +173,27 @@ class TaskMapping(DefaultDict[K, "Task[V]"], AsyncIterable[Tuple[K, V]]):
167
173
  e.args = *e.args, f"wrapped:{self.__wrapped__}"
168
174
  raise
169
175
  except TypeError as e:
170
- if __a_sync_recursion > 2 or not (
171
- str(e).startswith(wrapped_func.__name__)
172
- and "got multiple values for argument" in str(e)
176
+ if (
177
+ args is None
178
+ or __a_sync_recursion > 2
179
+ or not (
180
+ str(e).startswith(wrapped_func.__name__)
181
+ and "got multiple values for argument" in str(e)
182
+ )
173
183
  ):
174
184
  raise
185
+
175
186
  # NOTE: args ordering is clashing with provided kwargs. We can handle this in a hacky way.
176
187
  # TODO: perform this check earlier and pre-prepare the args/kwargs ordering
188
+ try:
189
+ argspec = _args[self.__wrapped__]
190
+ except KeyError:
191
+ argspec = _args[self.__wrapped__] = getfullargspec(self.__wrapped__).args
192
+
177
193
  new_args = list(args)
178
194
  new_kwargs = dict(kwargs)
179
195
  try:
180
- for i, arg in enumerate(getfullargspec(self.__wrapped__).args):
196
+ for i, arg in enumerate(argspec):
181
197
  if arg in kwargs:
182
198
  new_args.insert(i, new_kwargs.pop(arg))
183
199
  else:
@@ -194,8 +210,8 @@ class TaskMapping(DefaultDict[K, "Task[V]"], AsyncIterable[Tuple[K, V]]):
194
210
  else e2.with_traceback(e2.__traceback__)
195
211
  )
196
212
  finally:
197
- self._next.set()
198
- self._next.clear()
213
+ set_next()
214
+ clear_next()
199
215
 
200
216
  self._wrapped_func = _wrapped_set_next
201
217
  init_loader_queue: Queue[Tuple[K, "Future[V]"]] = Queue()
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ez_a_sync
3
- Version: 0.32.12
3
+ Version: 0.32.13
4
4
  Summary: A library that makes it easy to define objects that can be used for both sync and async use cases.
5
5
  Home-page: https://github.com/BobTheBuidler/a-sync
6
6
  Author: BobTheBuidler
@@ -2,80 +2,80 @@ a_sync/ENVIRONMENT_VARIABLES.py,sha256=ikTsq2B3rUli665CTWkH_UsBwuXXAhrNvcosup6Ks
2
2
  a_sync/__init__.pxd,sha256=u2LfI62DUKrUr5k3O5-65sWl-QETx6ozR8REh-qMv74,82
3
3
  a_sync/__init__.py,sha256=c7IgGDyjBj7x0XzXAi0CFqKdMyEk0VzpxBbiH3Z_MGA,5870
4
4
  a_sync/_smart.c,sha256=CbOW9MnEN2oG9f5q_a4M7mem2AAqUn91Lad5vD-7I6M,913358
5
- a_sync/_smart.cp39-win32.pyd,sha256=2b_8FJX80k6-e0tISY1BbGDzJnBwnpQVMDu7hOJ_j4k,134144
5
+ a_sync/_smart.cp39-win32.pyd,sha256=ZNNsqH1qbMwH2eyMIHFL9fI8KcwsfCpfdEgjC8CJwY8,134144
6
6
  a_sync/_smart.pxd,sha256=HfWxESAe26BGlvM20vLC7vcsv-N1jRaQbXd-HjUQ2wE,78
7
7
  a_sync/_smart.pyi,sha256=rLRA5tB6H7CTTpUYGrwuweZ00YQDoxMKV4kDhoTYL3Y,5592
8
8
  a_sync/_smart.pyx,sha256=zdfKyNL2G1LWkcqK0_l9BmgdLZRX5_P_kXAUQvoJaCc,20123
9
9
  a_sync/_typing.py,sha256=-5BrrywuQcO6noiArKCTdMDB29xeWp_E9BBJQC2oFLk,7108
10
10
  a_sync/aliases.py,sha256=Ri300mMgj0EUmffx1g2FsfuglRd_Gc-8SlzLv0Sn8J8,215
11
- a_sync/debugging.c,sha256=8OuXhORyBOoryvOPOtD1d8XVQ7orRuTUqmrk6A_vo9g,589316
12
- a_sync/debugging.cp39-win32.pyd,sha256=ot-NRif3bEcVpV2sZDFN-ExWISIigAV280KRT77l9xA,86528
11
+ a_sync/debugging.c,sha256=FrYwB87lULsdhxT72VUbpdloMnKaMBPy4bxxH7dA6jY,589347
12
+ a_sync/debugging.cp39-win32.pyd,sha256=08c88ndrMqAIBM6Wwh5CUengSKv2Vd3gDRaH5rs9rx8,86528
13
13
  a_sync/debugging.pyi,sha256=Q-ohFkBbneEu9h2Imk5qdQQQoA3tg70wUcJlUthKGHc,2330
14
14
  a_sync/debugging.pyx,sha256=SusQeWBuibY_7BuldAwdcBAW5By-LbkEYrp2KqCvehM,3152
15
15
  a_sync/exceptions.c,sha256=UIG9T4cxxNzObR5psF4wRQ9LehvDcKQB75OyWnBvkJ8,550538
16
- a_sync/exceptions.cp39-win32.pyd,sha256=4qo7SnLwUXGC7ea4PP_6NrJ3VclrYawYVwe00cbcLg4,94208
16
+ a_sync/exceptions.cp39-win32.pyd,sha256=e4mX6-YyWPuCStMazxAQD7zUDXQUrVAagva-dkB8CSk,94208
17
17
  a_sync/exceptions.pyi,sha256=bU3gjEYwPF7EgA8BpqL9WfsuUO_VVdHy6Ke4yTJ-kDA,11210
18
18
  a_sync/exceptions.pyx,sha256=7QxlRinyHBVEzCOuExfg-VN_CQ_kxW-cKYAWlCTV_mM,13644
19
19
  a_sync/executor.py,sha256=Q2kebRUP_sJanV6XDrsgd6cn0KFgGZl-9pN-GcHh8I4,21976
20
20
  a_sync/functools.c,sha256=4SJvN4_X9b7AQKP1P1TJ3rPej3t4vL5liZBPv6Y09lk,450429
21
- a_sync/functools.cp39-win32.pyd,sha256=3HONDwwLa6PFFNLwmOXEeuRQcZDCdbKZyT_Pc3jOl14,55808
21
+ a_sync/functools.cp39-win32.pyd,sha256=tWzct_wjOsbKwKWEXifm4azKn6k4Wz9v7F2GOqMhFFo,55808
22
22
  a_sync/functools.pxd,sha256=SBLpWvCOU4103wWzKsZjNQnJ_KzGMYU_dBgFLkS4Y2w,193
23
23
  a_sync/functools.pyi,sha256=NZbuO-psulMCNMEKlX4ZlkiZioFlyEmNG-pwOkmzl_E,1437
24
24
  a_sync/functools.pyx,sha256=35fUpflI6a4l95eoqSVaKyXDXw-6tuH77C0oy_u2MFc,4976
25
25
  a_sync/future.py,sha256=Wp92G-rmbRo-QBAjZcF-Ah142JzQec_ygOKqQknq-WM,50172
26
- a_sync/iter.c,sha256=BR63876jsN2oZdEUQone3idLQkEt60rsL7Uh3xxu7TQ,1611820
27
- a_sync/iter.cp39-win32.pyd,sha256=0a2UX7lQi9hqSR3cyrAfDDoimreqGPDNYLdgtDmhEAM,253952
28
- a_sync/iter.pxd,sha256=UvNjVpw1pMbaSMlebR_KnRKIoPrnzGfkFlofwUmF8jo,360
26
+ a_sync/iter.c,sha256=-FFmiTJV_cpFH45pdGE6vfYkM7YPqQmGTfjAoBFE_mk,1617444
27
+ a_sync/iter.cp39-win32.pyd,sha256=q8dYYqyk6dUnczE9pQGFQ2J6L-Zu9PpRcDOfkoLaT7w,254976
28
+ a_sync/iter.pxd,sha256=MFhRBVeY4h4vg2zm1LH973air-2Lciy1IbrYekZmByM,438
29
29
  a_sync/iter.pyi,sha256=csJ4fAXi4KX9r2zHKR6df0-WKbGE2jSXa9GB0FpizaU,15778
30
30
  a_sync/iter.pyx,sha256=CLUrgkggB-HEXiDJ9IADwtJBZEQMcMOPGapQk2ZXgg0,38467
31
31
  a_sync/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- a_sync/task.py,sha256=4wx2-rSWBHnSiDNnx-3nqtzWINMd879K8eWQbuq_rrE,35548
32
+ a_sync/task.py,sha256=IJKgrO48RHULGUGihLPzibtB8K75DiNA0lSfzYtaC5I,35977
33
33
  a_sync/a_sync/__init__.py,sha256=LwgGpuG7UVq8bE2K_Uwb21T7X9cs0QZHNzNdPaw11kU,2260
34
34
  a_sync/a_sync/_descriptor.c,sha256=LrdySCXwos-VyG3IqX51reW_Yd0aCgOuFwwbA81jfvA,843755
35
- a_sync/a_sync/_descriptor.cp39-win32.pyd,sha256=xU53loUn7_VKaJu0qX04sddAUFie19arSVTLA-Fw_bs,131072
35
+ a_sync/a_sync/_descriptor.cp39-win32.pyd,sha256=ZimzmQhsaS18C6WHse0DVHF8ETKP_-FHz4TTl9dLqvA,131072
36
36
  a_sync/a_sync/_descriptor.pyi,sha256=vmiMY77NzOm7dlT3II-Lg6C8w_kVGz_KPm8Hh5hrFos,1377
37
37
  a_sync/a_sync/_descriptor.pyx,sha256=2AQNRvgXGEYye5YvxRKTY3GFHRU-jyYs7fLojCzqVS4,14024
38
38
  a_sync/a_sync/_flags.c,sha256=kOUys6kbZv-5t8S8EAJvstq0aItzDOs8_0m2Rbw-bu0,217277
39
- a_sync/a_sync/_flags.cp39-win32.pyd,sha256=dgbOz-1x6B7_eKv5Q02KJXqGMDPONt8FkCAAgje5dUU,25600
39
+ a_sync/a_sync/_flags.cp39-win32.pyd,sha256=YEDYEAofAtLtb-575iHWDPqVUvz0YDRDDZToMnsvneA,25600
40
40
  a_sync/a_sync/_flags.pxd,sha256=Cg1AkZCQiQumx05MeorTagundpSWrOHbacGGi5vOv1k,191
41
41
  a_sync/a_sync/_flags.pyx,sha256=MEhX5g-CRJUHKLUAuY7n_AOkBaQ92Wx_bvpha6n2o8w,2898
42
42
  a_sync/a_sync/_helpers.c,sha256=WnygMAX2Y-yS91IoYxoUkotnVYxB0yABcd9AaPhegZk,550865
43
- a_sync/a_sync/_helpers.cp39-win32.pyd,sha256=vJuUjDDjCVIYZXSJeI3Hk0hD--Vcqb4dNihadaAqeBI,72704
43
+ a_sync/a_sync/_helpers.cp39-win32.pyd,sha256=Sz-4fghTiNAMSKeNQyHu0Vh0Yu9CuYVkoae2_2wOMME,72704
44
44
  a_sync/a_sync/_helpers.pxd,sha256=RYO8vxJqfoHcmLYG4lQQlEIdH5qcE0Ar5yOe6mRTIvo,120
45
45
  a_sync/a_sync/_helpers.pyi,sha256=ewJ4yDFx-pP9beBj9lpYgateBqp3pr8_RHTvN9MgFZQ,329
46
46
  a_sync/a_sync/_helpers.pyx,sha256=XUWBNmO8ehUQiEv14sZBdXAgJ9aMIJBfLqrcFmo34UA,5576
47
47
  a_sync/a_sync/_kwargs.c,sha256=poF9JMB9HSHRB6ZVUKx-tUTZgkvDBB6I2hcUSfcNSWk,405241
48
- a_sync/a_sync/_kwargs.cp39-win32.pyd,sha256=iRM8Mvk9i8kRgJXVTbYeVfCFQncb7YGPLIGRWuj_m6k,49664
48
+ a_sync/a_sync/_kwargs.cp39-win32.pyd,sha256=_qOx0U-DJyZpmnyA2E3sJZak1IyEk_VXs4-lCwMDHpk,49664
49
49
  a_sync/a_sync/_kwargs.pxd,sha256=dz6yAQQaGBGkt22S7ASk8jfeoSCEdWP2VHFiqht3r3A,94
50
50
  a_sync/a_sync/_kwargs.pyx,sha256=VwGobiT_9tmRDEX7avQKjkn66wwLc9-933WDjvH-x_g,2039
51
51
  a_sync/a_sync/_meta.py,sha256=t6goju5UI2ajS47p_0GCiyLcUMPyz9rKRALolmDD-T0,9637
52
52
  a_sync/a_sync/abstract.c,sha256=lvXSz0-v7LCxJfWtJMdRfm_1DxBxAmoTjnwMBmPwyZo,461346
53
- a_sync/a_sync/abstract.cp39-win32.pyd,sha256=XvWc4Dep1odyxxGJtj_lzzUABp8n1HlaODekDdsI3eE,67072
53
+ a_sync/a_sync/abstract.cp39-win32.pyd,sha256=H9qjJDEbyKBoWFUkUI0RCZbula_IWAjy5C6pCin2sE0,67072
54
54
  a_sync/a_sync/abstract.pyi,sha256=Ttj4UHVvrH61EA-9v93LjAFpYYJ7RIxAkX6khonCJFk,5212
55
55
  a_sync/a_sync/abstract.pyx,sha256=SW3tga3n8JcgEaJrPpsn9bKn_kjmb4_8za7_QWowT60,8085
56
56
  a_sync/a_sync/base.c,sha256=BFDfzKxnKF0X_9F6CUFIk6UeGX_hR357OO4k961BHfE,562197
57
- a_sync/a_sync/base.cp39-win32.pyd,sha256=PuotvcxGqIVm8Rq6Kogza105QbvP-TUYGly7qZ2L9SQ,80896
57
+ a_sync/a_sync/base.cp39-win32.pyd,sha256=iDdh5-09b50-7m1wRjBLw8KLFFZmS6NxOK5_Fsg7ZfU,80896
58
58
  a_sync/a_sync/base.pyi,sha256=xoc15MCBymMIxGKumav6tYRPwD0BFyLsfNA4DeFtUMM,2386
59
59
  a_sync/a_sync/base.pyx,sha256=a-G6AONvQwGs53Eo1Sj5ELpUFPHSiTZyrxEO-o8vJsk,10874
60
60
  a_sync/a_sync/config.py,sha256=-dtN8cDc9jzuB7TPdbgjr_uz3hTvZGnOCOvcfeWBB6Y,6389
61
61
  a_sync/a_sync/decorator.py,sha256=KPMjnhXhiYy4OdrpCkRJ8vsWs5fpUlB7c1JGBA3OrkQ,17750
62
62
  a_sync/a_sync/flags.c,sha256=3osmFZwsyK4PLS2J6KiexispdXiKg2QzgLptjqrMrXE,175745
63
- a_sync/a_sync/flags.cp39-win32.pyd,sha256=OXUpGGCTOBxnwQmPCE4bHqLFlbYTtI4EDh2I3NiV568,18944
63
+ a_sync/a_sync/flags.cp39-win32.pyd,sha256=87Kf9OwBsFbPxTGz2WXQr3EHarzjwrmCGxU8GixwtzM,18944
64
64
  a_sync/a_sync/flags.pxd,sha256=TThtgjklqi3JfeIfxp-En5NUQxAwuiJv0GtWAC1BdUM,2310
65
65
  a_sync/a_sync/flags.pyi,sha256=3KofIEWkZkhht-v2t7U6PqGjx4Yf1O7hARgP8ASS-f0,2303
66
66
  a_sync/a_sync/flags.pyx,sha256=V0uVMV6SUTYkjYAi6h4n060f9cHn3TRn-csVLsHe9rA,2377
67
67
  a_sync/a_sync/function.c,sha256=Xh_ETdyOpZz0W3lPbAV4gnJdydr3dE2OCd1bs_CDEBg,1692660
68
- a_sync/a_sync/function.cp39-win32.pyd,sha256=j0RUWdRnzwUd21JsnynqrqaqFz51CGDWGsfAEojr6TU,258560
68
+ a_sync/a_sync/function.cp39-win32.pyd,sha256=PRpapaNo0V1k4XhMVT69YHOnjZ0Pe5Eh6AP0P5CjNhM,258560
69
69
  a_sync/a_sync/function.pxd,sha256=lkLvfis-Eo32Ac7sMRjrLNBARM867ZDgcBw-Mp-cAeE,702
70
70
  a_sync/a_sync/function.pyi,sha256=KVnJKnVlVCPcKr7zFxEPewA59UbohZMv-aGz2-tPjvc,18293
71
71
  a_sync/a_sync/function.pyx,sha256=AXfju0XXPyyis0m1mY-odBP6Bqv_j8UQ1k5BBregALE,46966
72
72
  a_sync/a_sync/method.c,sha256=yDpj5rUORpDoWRWmtKN_0Rvz_PrQSREY9CNZ1la2tQs,1261605
73
- a_sync/a_sync/method.cp39-win32.pyd,sha256=QEG5FptJXplDdasUFJDE_JHLQfgef_aTVxHGqYc6_k4,221184
73
+ a_sync/a_sync/method.cp39-win32.pyd,sha256=nvTdLjTzeE0L_6k_CRecctA8TFsAYBkxABcVbVyny4A,221184
74
74
  a_sync/a_sync/method.pxd,sha256=MjKVokIhA0JziZ01Mgo7wvQUDJPrS_o-zr13NbeqP6E,124
75
75
  a_sync/a_sync/method.pyi,sha256=ydRbo0J_9zj_ZGY0mipO0rcCo9LJ6m79xCSu5RIF9B8,18339
76
76
  a_sync/a_sync/method.pyx,sha256=CFuTpSUAUD4svYjDFRCZHDmRZojoLqM8ANgPyNKzLMA,36130
77
77
  a_sync/a_sync/property.c,sha256=_W6CLPgF5dzMHr0P7DOt_j0OmBZa97IFRHxUazb64Zo,1243850
78
- a_sync/a_sync/property.cp39-win32.pyd,sha256=etyLUyPXwB829McMGNC7obSvJQHef4GcrRKgnoeDUqg,206848
78
+ a_sync/a_sync/property.cp39-win32.pyd,sha256=uW5pjj8Wf_92ixhpeIeVhM5RDdDXkQ5_90jsuqreYlc,206848
79
79
  a_sync/a_sync/property.pyi,sha256=2-6xOI9RUOzZVEF_teH8Qd5tU-2R5ym1l4hYOdRs-1I,14056
80
80
  a_sync/a_sync/property.pyx,sha256=Ta4bSp3v3yFcEYV_5KpvQ9Y6zJJCgwcGIi5RICWd3Mk,28417
81
81
  a_sync/a_sync/singleton.py,sha256=jTKNWUQeOWzQuswgquqP10ndq5-H8a4f0uYZvfpXIOw,2555
@@ -83,7 +83,7 @@ a_sync/a_sync/modifiers/__init__.pxd,sha256=17tPpMY2ByVbMGIpI5kiP3WX8V9IM5ZHJp0Y
83
83
  a_sync/a_sync/modifiers/__init__.py,sha256=taOyVb9G14B4hkM3Si5_rAP7pKF_Aeq9KZFCNPAVLLU,4260
84
84
  a_sync/a_sync/modifiers/limiter.py,sha256=jt9FpK98AYZXFgNUIGRM3G2J9eVJuRthajcr0KvFyeg,4435
85
85
  a_sync/a_sync/modifiers/manager.c,sha256=GB8ALm6VuwXYF3QBAS5d90q_GjegTsoDbz1BOivP_l8,626548
86
- a_sync/a_sync/modifiers/manager.cp39-win32.pyd,sha256=hwB1aw2cczklMEsCLWfVRbFTk9mXThzSC2ZxiYAP8QQ,89600
86
+ a_sync/a_sync/modifiers/manager.cp39-win32.pyd,sha256=JzmZXAjlMoRQ8kMiqM0hmym4fuTmUcE1C5NaqXtrv24,89600
87
87
  a_sync/a_sync/modifiers/manager.pxd,sha256=wj0f_5FEeXmEIoWier-OlAvV8cQt2FzoLippsoOxhQM,188
88
88
  a_sync/a_sync/modifiers/manager.pyi,sha256=ghzuXdxNHkzZzr1fcGt6BXAT4v3EP_r0qa55LG0p4WE,6441
89
89
  a_sync/a_sync/modifiers/manager.pyx,sha256=W8ljOPcwAhWaHqkKfLjT0e5BaW4JX_NDE7UczrampO8,9695
@@ -93,49 +93,49 @@ a_sync/a_sync/modifiers/cache/memory.py,sha256=a1qcYmrYuwp8OP8SGJGxQU-DP7JzTBA-5
93
93
  a_sync/async_property/__init__.pxd,sha256=EGawuQLZIz7ZZLOFmaOQAFUVvabadR0aPYBW7U4TaCo,74
94
94
  a_sync/async_property/__init__.py,sha256=qMz555CGN4cL3VunLtS6KxtpPr_QXR2jAf7gyWflLfg,64
95
95
  a_sync/async_property/cached.c,sha256=CAKViAhWWlZEWOXeGJI3u6NTxnR9NOnHZwJiuDlBwyI,858377
96
- a_sync/async_property/cached.cp39-win32.pyd,sha256=UpnUs0ei9GGPH5GNIAGc9-0ttzUKwhbrEyuMLPwaYI8,119808
96
+ a_sync/async_property/cached.cp39-win32.pyd,sha256=g55zCQYhuh7IRXj4DFEIYCyicYBKqXHq1wtGhXv74AI,119808
97
97
  a_sync/async_property/cached.pxd,sha256=unwYQ9C9VcC67hGmKO9ZZRJLNY1bH9z0sItLnMH0mVs,348
98
98
  a_sync/async_property/cached.pyi,sha256=KPd6V8ENsM-49QUupsLCniW-fnQB8so06OiliiIvSrI,1859
99
99
  a_sync/async_property/cached.pyx,sha256=l5W9PAuRzMjnPiBXG3imL7BrjAG0_gZyge1yJoaNe0c,6492
100
100
  a_sync/async_property/proxy.c,sha256=ETHjdjmh-1prdiuwMooZ3XjUXtEvrn_A3wJcTIqEd-g,1514503
101
- a_sync/async_property/proxy.cp39-win32.pyd,sha256=NmmKUUlepsL0DHPCl1knDGrZ7BtXlzbga_GpaNa6AJo,222720
101
+ a_sync/async_property/proxy.cp39-win32.pyd,sha256=EZrYZAgLyGhxnld5qJRnas0-0uLHJ1TqRU2aXi4r0PA,222720
102
102
  a_sync/async_property/proxy.pxd,sha256=zWc3550KyWxwZobdiYJabB93Nq8IMpgs32JrHYPPI10,48
103
103
  a_sync/async_property/proxy.pyi,sha256=vLG3DxScefR32MlHfnTgYPQk04BHvmi_N8hp_1COvU4,4342
104
104
  a_sync/async_property/proxy.pyx,sha256=WgalGnGFlJnBiE28KCGloQnHxKSmDeP4HR_RQ0p0wHs,13769
105
105
  a_sync/asyncio/__init__.pxd,sha256=HJQrseYJ2Zt7tf3thkbL5pb4I3d4L5rg_sDNaTLGDZk,341
106
106
  a_sync/asyncio/__init__.py,sha256=Nc7RxGgRQP2EVG8k_T53eHO2hS8xQ7n6XgfSXBqyma4,6497
107
107
  a_sync/asyncio/as_completed.c,sha256=Owdg3kUVNv399LRN6qajBv6TAHc7sK7km9RNu6RzW1g,735129
108
- a_sync/asyncio/as_completed.cp39-win32.pyd,sha256=yOrO0dE4RtKm6VyPIdSvIRyEp6Uj-swmfMkni2Pj5m4,109056
108
+ a_sync/asyncio/as_completed.cp39-win32.pyd,sha256=n52iaKuy4meJBykhCQ-qg-kVPkVPAqqfxMAHD7g849c,109056
109
109
  a_sync/asyncio/as_completed.pxd,sha256=nm7WdrTBIMndSNZ1SjozFyNu8HGdDL7HftwLEHsjYew,169
110
110
  a_sync/asyncio/as_completed.pyi,sha256=v7ao3rxDtwfvTSu6rCU3Irr0r2jPugOF3IZtLptTgmM,3862
111
111
  a_sync/asyncio/as_completed.pyx,sha256=IS_nGBBa5wrBTa6WLTqA1FGTJshY6C3D99icOL-XJ-o,9321
112
112
  a_sync/asyncio/create_task.c,sha256=UmHc-QPbWN1mIdV-51JGHvyHkD1ah_Z4a2EVlryPz-Y,606174
113
- a_sync/asyncio/create_task.cp39-win32.pyd,sha256=LEk4xSqWUlkFjW-73GM3hhOTlGraWIveWH_aK-6esvk,84480
113
+ a_sync/asyncio/create_task.cp39-win32.pyd,sha256=1ZNyESGExhuZBapB13-8zVNOdrRyeQmmfb1QyWmkfzA,84480
114
114
  a_sync/asyncio/create_task.pxd,sha256=esCVrntjoKKYKiyfdZHrWWplZ4pnoe3-rXtipOJrRkM,144
115
115
  a_sync/asyncio/create_task.pyi,sha256=wN_pcttfJTJrA9TiTJ3qYaiLnI4ikQVFvH44c2nnJE4,1915
116
116
  a_sync/asyncio/create_task.pyx,sha256=Q-rHhfFDoOeXsjaLM18t1zqfFtIW8GNHNTt_1ZHHmbo,8868
117
117
  a_sync/asyncio/gather.c,sha256=uXOlH53Ivgm31Umsh2zH9Y64DsVq4y9E5G7XMTIc0SQ,637565
118
- a_sync/asyncio/gather.cp39-win32.pyd,sha256=Nj5sLNGJtANFC13xa-Ny1JWNL8PQYVhg1GVMGk_dOUI,97792
118
+ a_sync/asyncio/gather.cp39-win32.pyd,sha256=L6oalImJR96o_rfJ1R-H_OcIUCSMjNVTnUX7ThdbFng,97792
119
119
  a_sync/asyncio/gather.pyi,sha256=wfi_z1UZzXpq3fEyd2L9N8IVvEY_fbHHpDe2Qy32mcw,4622
120
120
  a_sync/asyncio/gather.pyx,sha256=zCUaTcTIUl1YJLkl0WBTgrEUMCY-uVcWl-gU7eRpf5Q,8783
121
121
  a_sync/asyncio/igather.c,sha256=CYb1Cl2W-vSVzQgPK8GE299VnQEn34rzRIUPsv_1038,485497
122
- a_sync/asyncio/igather.cp39-win32.pyd,sha256=Vj5atvVz9nX5dI48Er2pHrvBPIqfA3c8enuPnx0bg8E,61952
122
+ a_sync/asyncio/igather.cp39-win32.pyd,sha256=lXIHo2DiU44ttDEf1IerAbqXShCa90a2hDsA3Ant0Wc,61952
123
123
  a_sync/asyncio/igather.pxd,sha256=M9hMUtgp6118pa0ddR9daQubvnceefnbt4pbvEl0doE,71
124
124
  a_sync/asyncio/igather.pyi,sha256=aNLP9ViC5Cid1ikgBZUCme2XiMKiwxZEkBZWAw4_IJQ,208
125
125
  a_sync/asyncio/igather.pyx,sha256=uMAXo2qV1QgecXOyJWsPn_Tt-qW4t7NHOny0OyUxr_8,6500
126
126
  a_sync/asyncio/sleep.c,sha256=mLfTbZuwUSzkrV1I0OdS25V368xSnH_TQZahbcZW5Dk,342947
127
- a_sync/asyncio/sleep.cp39-win32.pyd,sha256=2QxhfKRykDmmN1-fYL1GWI-4IxCsv5QR0Oc8xUjQ_O8,40448
127
+ a_sync/asyncio/sleep.cp39-win32.pyd,sha256=-4U_HrezvJZCy4UNzbGINIeEXOWPdpy6F65tje_YJQc,40448
128
128
  a_sync/asyncio/sleep.pyi,sha256=zy3g-AE9OF3SUrGm5cVlRcK7uVwkV4DBjXF0D_dqSsU,551
129
129
  a_sync/asyncio/sleep.pyx,sha256=GR6sv4AswrGMpF36Bz5Boelqvz5rlNNNA9UtEZj33fo,1322
130
130
  a_sync/primitives/__init__.pxd,sha256=FIO-eD4HaJ259mz3XB6HE1YF4tDej6ojrxQ_kx-tMwM,38
131
131
  a_sync/primitives/__init__.py,sha256=LSzq3o0aXdwb-g96_YubEu3MmI1uA3FWwdbsE8wTS0Y,1695
132
132
  a_sync/primitives/_debug.c,sha256=e30i1ogEoq0aqt23G9o83JhLb47Rv1p6hnpOLuFkhhA,600626
133
- a_sync/primitives/_debug.cp39-win32.pyd,sha256=bqFX5JoQzLTkQlphQzGgclMVK28QXlPegxiR0nG8UAY,82944
133
+ a_sync/primitives/_debug.cp39-win32.pyd,sha256=nzBKAZN-mQo5Li27OczVy30auD_u7t6dZ2_fTpbwqrk,82944
134
134
  a_sync/primitives/_debug.pxd,sha256=EK81O2ckrn3E8uwoU_R2Gorx6myk5Pt_v2Ike8ME1q4,476
135
135
  a_sync/primitives/_debug.pyi,sha256=hEWnWusF3jh-hc3gYenX76WAuMXtyopsAXFzrDAWXlw,2227
136
136
  a_sync/primitives/_debug.pyx,sha256=oT_H6VB_Ng3K8iwQTcAF2n5Y5Ks1nm-vW3XE1dehdBI,8072
137
137
  a_sync/primitives/_loggable.c,sha256=kshS4IudRMmfHhaLDfozFAA7a-eCJAHqXZxqx4JrcAY,419948
138
- a_sync/primitives/_loggable.cp39-win32.pyd,sha256=BiJYOAA4SKnX-wq5fRRYHw2O3EtwasFA2-KLTZQOocA,55296
138
+ a_sync/primitives/_loggable.cp39-win32.pyd,sha256=uZThzWADaOG_YUVRjm7yZk8uWq450jVieWwAIA64u_I,55296
139
139
  a_sync/primitives/_loggable.pxd,sha256=diuZ-6UFy8PKj2wzhq4TLiAO9WDl4zmdNXJMtxAs7jA,136
140
140
  a_sync/primitives/_loggable.pyi,sha256=RpLX46Tb3xrpQGWfniENNFgM0-PTcaZtvzuGS-Z0X2M,2000
141
141
  a_sync/primitives/_loggable.pyx,sha256=MZ4cVSib3xWgYHNsu1FCSW6G13yCqaEV2eVAmIeLMCU,3105
@@ -143,22 +143,22 @@ a_sync/primitives/queue.py,sha256=zbmn2e6FJ1R_IHEFrc2gQOwqekAC-Dv3GYNMJ4DGqPc,34
143
143
  a_sync/primitives/locks/__init__.pxd,sha256=RwmeBP3FZ8uMGxmpfeRkKumqF8awArLuQvNMHurZoDU,310
144
144
  a_sync/primitives/locks/__init__.py,sha256=3HUsoO6Bim8rn9uL9XJ5tPHfqA2TKe6-d_60CDMMfQU,453
145
145
  a_sync/primitives/locks/counter.c,sha256=mnWk4AMwP1SP0YQKIgZiYUCzv9qxR6ZXr5bpDKoxZP0,713296
146
- a_sync/primitives/locks/counter.cp39-win32.pyd,sha256=L8CdIw6f97_HqM4Kba_aWdATx0Qdp7_c0LwMxMsVJEk,99840
146
+ a_sync/primitives/locks/counter.cp39-win32.pyd,sha256=CypzkamzsSZoGWTvjUTfEgBzMXz0atguQKpIK8GvnLw,99840
147
147
  a_sync/primitives/locks/counter.pxd,sha256=gnzExZDKySYNDeNuy1r8WygP6lwj8y1QsJc4Htto3lw,421
148
148
  a_sync/primitives/locks/counter.pyi,sha256=YPilGVSVIqsZ-Dig66FlTS7qlg7rIPqBCtnyhLVq_PA,5228
149
149
  a_sync/primitives/locks/counter.pyx,sha256=7MVhLuqYPYvFG51e6hRFJSqXwnxT9-iH4inIt6YWfDU,9315
150
150
  a_sync/primitives/locks/event.c,sha256=7QqRwfUV78k9o0IOTZeNOYndUMB3hP89sibv9-kwOXU,655955
151
- a_sync/primitives/locks/event.cp39-win32.pyd,sha256=VvyLcDktVYhnxtArLscyNGKezSWTlnRoZ2fNjQKND-E,91648
151
+ a_sync/primitives/locks/event.cp39-win32.pyd,sha256=xvw1Tf_BRDTeSg-7-DfONqeTmZ8fSC5iiLTHEoC7OWc,91648
152
152
  a_sync/primitives/locks/event.pxd,sha256=nB_Su_K05uYlCp3hlFv0KQhUYQ7spsZKb-9I4cyA-Po,717
153
153
  a_sync/primitives/locks/event.pyi,sha256=8WiCAzARjugBY4AoedpDqlfdt2VdynYgrP-HhEiX7Pw,1499
154
154
  a_sync/primitives/locks/event.pyx,sha256=ybzomSEg6Focpj0Q75camw1-Cxm1V7aDe6tFGnfDGIw,6234
155
155
  a_sync/primitives/locks/prio_semaphore.c,sha256=WZ6Tg6443Pn7sVjQEyFYW2JD3Mc_-XLcSjJY94gWAIE,1161492
156
- a_sync/primitives/locks/prio_semaphore.cp39-win32.pyd,sha256=srrBXHWmWFSEpymp6bs7ZW5eIR2X1i4fAwsRfsrPNB4,155648
156
+ a_sync/primitives/locks/prio_semaphore.cp39-win32.pyd,sha256=qM6QjNijfei4_Z6KlXEFluBhLHfRCrvdIag9HuCGJag,155648
157
157
  a_sync/primitives/locks/prio_semaphore.pxd,sha256=3wLcicrWU5A-melPp8eR_0G7fz57G0MqasjjurSCmyM,1066
158
158
  a_sync/primitives/locks/prio_semaphore.pyi,sha256=dwCNf016XEErdKYk63vpvL3T0I4IZfRYW2bKANZ-V5Y,7861
159
159
  a_sync/primitives/locks/prio_semaphore.pyx,sha256=YZ6Ur0IzNK9mPP2pNiBzzGSGEqywHbxKHzSGcG0bwGA,22693
160
160
  a_sync/primitives/locks/semaphore.c,sha256=jRK-vIx4faUU04VpU4RZlOtCtfC-ke_isXjA825BF20,1135596
161
- a_sync/primitives/locks/semaphore.cp39-win32.pyd,sha256=tSU31ffeq1iuFPXm2IHN51KFeQJ-LF0lxJcwl2VzXX4,153088
161
+ a_sync/primitives/locks/semaphore.cp39-win32.pyd,sha256=z-YL2FMNTzwtFi7_hZq_lC5X7Os4bYkfDCNW6FCBNHw,153088
162
162
  a_sync/primitives/locks/semaphore.pxd,sha256=SyiWMzUyY12YFDvnzGQbjc2Xp5uBeWrrbzzjDn5vjQY,606
163
163
  a_sync/primitives/locks/semaphore.pyi,sha256=PyVMqrP4Uy_6422iP2LATc_KjGmc-FM9pKq3Pv-lT5Q,6171
164
164
  a_sync/primitives/locks/semaphore.pyx,sha256=UFbg5MCaR3-daWh011JqAfARy9mrldKl__Ox0AFca_g,15419
@@ -167,11 +167,11 @@ a_sync/sphinx/ext.py,sha256=ID0YgAYrUuVml2lU5m-1T7Os6U2tq31BdE6kA3ic8Ag,9206
167
167
  a_sync/utils/__init__.py,sha256=RL6TMpTccKytj3nft1iDRbNQCL4zy27BO7J3zwYBg5Y,3318
168
168
  a_sync/utils/iterators.py,sha256=QhXHC2pU-KR_1Icdg3heYt3O53JMqtIrbAMH1M9t3zk,11352
169
169
  a_sync/utils/repr.c,sha256=lRCtRDUi0yyQnbYN7dUiy3Ubc2kFZH69DOYdGGGfxNE,571761
170
- a_sync/utils/repr.cp39-win32.pyd,sha256=7eiq4Nx3NT85DQX5CXDdXTPsqCDBkJ_wPNpH_j7EC20,73216
170
+ a_sync/utils/repr.cp39-win32.pyd,sha256=iudMPDqjVBLD0TLqmQ77PxNTxEgl4YrP_YzP3zjcdZk,73216
171
171
  a_sync/utils/repr.pyi,sha256=rderVJevHMbNST7yN9mWkDCdfBUBwhluuuUmAPiK60U,133
172
172
  a_sync/utils/repr.pyx,sha256=xjS2rosYFHzpfy9ccdNVSAWOzX8JDE35hrwUiJUuqNM,2705
173
- ez_a_sync-0.32.12.dist-info/licenses/LICENSE.txt,sha256=m-MQLU0LnrbQRgqugjggMDXxTe0meMb8HwioffmuEIM,1091
174
- ez_a_sync-0.32.12.dist-info/METADATA,sha256=idh6k5Ly5D9kNRDiVhkIWD57N9N_gAejxN2IWc-rWro,13564
175
- ez_a_sync-0.32.12.dist-info/WHEEL,sha256=qKnoMhQXlxFNJRFYs-biAmpAZwkAFUKtP4maISTqZj4,95
176
- ez_a_sync-0.32.12.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
177
- ez_a_sync-0.32.12.dist-info/RECORD,,
173
+ ez_a_sync-0.32.13.dist-info/licenses/LICENSE.txt,sha256=m-MQLU0LnrbQRgqugjggMDXxTe0meMb8HwioffmuEIM,1091
174
+ ez_a_sync-0.32.13.dist-info/METADATA,sha256=Uavx5fg4A-ydoLL8XyGzPF4JzFZxrHf_yGeWHi14YrU,13564
175
+ ez_a_sync-0.32.13.dist-info/WHEEL,sha256=UNeSs6Jl_4BH1MReo8mjD3rX0WncFaxqiE-x9gv_cgg,95
176
+ ez_a_sync-0.32.13.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
177
+ ez_a_sync-0.32.13.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.3.1)
2
+ Generator: setuptools (80.7.1)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp39-cp39-win32
5
5