ez-a-sync 0.32.16__cp38-cp38-musllinux_1_2_i686.whl → 0.32.17__cp38-cp38-musllinux_1_2_i686.whl

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

Potentially problematic release.


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

@@ -1720,6 +1720,10 @@ static struct __pyx_vtabstruct_6a_sync_6a_sync_8function__ModifiedMixin *__pyx_v
1720
1720
 
1721
1721
  struct __pyx_vtabstruct_6a_sync_6a_sync_8function__ASyncFunction {
1722
1722
  struct __pyx_vtabstruct_6a_sync_6a_sync_8function__ModifiedMixin __pyx_base;
1723
+ PyObject *(*get_fn)(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction *);
1724
+ int (*is_async_def)(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction *, int __pyx_skip_dispatch);
1725
+ int (*is_sync_default)(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction *, int __pyx_skip_dispatch);
1726
+ int (*_run_sync)(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction *, PyObject *);
1723
1727
  };
1724
1728
  static struct __pyx_vtabstruct_6a_sync_6a_sync_8function__ASyncFunction *__pyx_vtabptr_6a_sync_6a_sync_8function__ASyncFunction;
1725
1729
 
a_sync/a_sync/_helpers.c CHANGED
@@ -1698,6 +1698,10 @@ static struct __pyx_vtabstruct_6a_sync_6a_sync_8function__ModifiedMixin *__pyx_v
1698
1698
 
1699
1699
  struct __pyx_vtabstruct_6a_sync_6a_sync_8function__ASyncFunction {
1700
1700
  struct __pyx_vtabstruct_6a_sync_6a_sync_8function__ModifiedMixin __pyx_base;
1701
+ PyObject *(*get_fn)(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction *);
1702
+ int (*is_async_def)(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction *, int __pyx_skip_dispatch);
1703
+ int (*is_sync_default)(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction *, int __pyx_skip_dispatch);
1704
+ int (*_run_sync)(struct __pyx_obj_6a_sync_6a_sync_8function__ASyncFunction *, PyObject *);
1701
1705
  };
1702
1706
  static struct __pyx_vtabstruct_6a_sync_6a_sync_8function__ASyncFunction *__pyx_vtabptr_6a_sync_6a_sync_8function__ASyncFunction;
1703
1707
  /* #### Code section: utility_code_proto ### */
a_sync/a_sync/_meta.py CHANGED
@@ -6,7 +6,7 @@ from typing import Any, Dict, Tuple
6
6
 
7
7
  from a_sync import ENVIRONMENT_VARIABLES
8
8
  from a_sync.a_sync import modifiers
9
- from a_sync.a_sync.function import ASyncFunction, _ModifiedMixin
9
+ from a_sync.a_sync.function import _ASyncFunction, _ModifiedMixin
10
10
  from a_sync.a_sync.method import ASyncMethodDescriptor
11
11
  from a_sync.a_sync.property import (
12
12
  ASyncCachedPropertyDescriptor,
@@ -137,7 +137,7 @@ class ASyncMeta(ABCMeta):
137
137
  attr_value.hidden_method_name,
138
138
  attr_value.hidden_method_descriptor,
139
139
  )
140
- elif isinstance(attr_value, ASyncFunction):
140
+ elif isinstance(attr_value, _ASyncFunction):
141
141
  attrs[attr_name] = ASyncMethodDescriptor(attr_value, **fn_modifiers)
142
142
  else:
143
143
  raise NotImplementedError(attr_name, attr_value)