ez-a-sync 0.32.10__cp38-cp38-musllinux_1_2_i686.whl → 0.32.12__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.

@@ -1,7 +1,7 @@
1
1
  import asyncio
2
- import copy
3
2
  import functools
4
3
  import typing
4
+ from copy import copy as _copy
5
5
  from logging import getLogger
6
6
  from typing import Any, Awaitable, Callable, Generator, Optional, Tuple, Type, Union
7
7
 
@@ -37,8 +37,8 @@ cdef object Task = asyncio.Task
37
37
  del asyncio
38
38
 
39
39
  # cdef copy
40
- cdef object deepcopy = copy.deepcopy
41
- del copy
40
+ cdef object copy = _copy
41
+ del _copy
42
42
 
43
43
  # cdef functools
44
44
  cdef object partial = functools.partial
@@ -502,7 +502,7 @@ class ASyncCachedPropertyDescriptor(
502
502
  instance_context = {"property": self, "instance": instance}
503
503
  if e.args and e.args[-1] != instance_context:
504
504
  e.args = *e.args, instance_context
505
- raise deepcopy(e).with_traceback(e.__traceback__)
505
+ raise copy(e).with_traceback(e.__traceback__)
506
506
 
507
507
  if self._fset is not None:
508
508
  self._fset(instance, value)