ez-a-sync 0.32.10__cp39-cp39-macosx_11_0_arm64.whl → 0.32.12__cp39-cp39-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ez-a-sync might be problematic. Click here for more details.
- a_sync/_smart.c +1431 -1560
- a_sync/_smart.cpython-39-darwin.so +0 -0
- a_sync/_smart.pyx +28 -16
- a_sync/a_sync/_descriptor.cpython-39-darwin.so +0 -0
- a_sync/a_sync/_flags.cpython-39-darwin.so +0 -0
- a_sync/a_sync/_helpers.cpython-39-darwin.so +0 -0
- a_sync/a_sync/_kwargs.cpython-39-darwin.so +0 -0
- a_sync/a_sync/abstract.cpython-39-darwin.so +0 -0
- a_sync/a_sync/base.cpython-39-darwin.so +0 -0
- a_sync/a_sync/flags.cpython-39-darwin.so +0 -0
- a_sync/a_sync/function.cpython-39-darwin.so +0 -0
- a_sync/a_sync/method.cpython-39-darwin.so +0 -0
- a_sync/a_sync/modifiers/manager.c +614 -937
- a_sync/a_sync/modifiers/manager.cpython-39-darwin.so +0 -0
- a_sync/a_sync/modifiers/manager.pyx +4 -1
- a_sync/a_sync/property.c +250 -244
- a_sync/a_sync/property.cpython-39-darwin.so +0 -0
- a_sync/a_sync/property.pyx +4 -4
- a_sync/async_property/cached.cpython-39-darwin.so +0 -0
- a_sync/async_property/proxy.cpython-39-darwin.so +0 -0
- a_sync/asyncio/as_completed.cpython-39-darwin.so +0 -0
- a_sync/asyncio/create_task.c +735 -579
- a_sync/asyncio/create_task.cpython-39-darwin.so +0 -0
- a_sync/asyncio/create_task.pyx +7 -4
- a_sync/asyncio/gather.cpython-39-darwin.so +0 -0
- a_sync/asyncio/igather.cpython-39-darwin.so +0 -0
- a_sync/asyncio/sleep.cpython-39-darwin.so +0 -0
- a_sync/debugging.cpython-39-darwin.so +0 -0
- a_sync/exceptions.cpython-39-darwin.so +0 -0
- a_sync/functools.cpython-39-darwin.so +0 -0
- a_sync/iter.cpython-39-darwin.so +0 -0
- a_sync/primitives/_debug.cpython-39-darwin.so +0 -0
- a_sync/primitives/_loggable.cpython-39-darwin.so +0 -0
- a_sync/primitives/locks/counter.cpython-39-darwin.so +0 -0
- a_sync/primitives/locks/event.c +426 -428
- a_sync/primitives/locks/event.cpython-39-darwin.so +0 -0
- a_sync/primitives/locks/event.pyx +3 -1
- a_sync/primitives/locks/prio_semaphore.c +2623 -1503
- a_sync/primitives/locks/prio_semaphore.cpython-39-darwin.so +0 -0
- a_sync/primitives/locks/prio_semaphore.pxd +9 -8
- a_sync/primitives/locks/prio_semaphore.pyx +65 -22
- a_sync/primitives/locks/semaphore.c +1048 -1051
- a_sync/primitives/locks/semaphore.cpython-39-darwin.so +0 -0
- a_sync/primitives/locks/semaphore.pyx +4 -2
- a_sync/utils/repr.cpython-39-darwin.so +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/METADATA +1 -1
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/RECORD +50 -50
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/WHEEL +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/licenses/LICENSE.txt +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/top_level.txt +0 -0
|
Binary file
|
a_sync/a_sync/property.pyx
CHANGED
|
@@ -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
|
|
41
|
-
del
|
|
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
|
|
505
|
+
raise copy(e).with_traceback(e.__traceback__)
|
|
506
506
|
|
|
507
507
|
if self._fset is not None:
|
|
508
508
|
self._fset(instance, value)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|