moat-lib-micro 0.3.1__tar.gz → 0.3.2__tar.gz
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.
- {moat_lib_micro-0.3.1/src/moat_lib_micro.egg-info → moat_lib_micro-0.3.2}/PKG-INFO +1 -1
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/debian/changelog +12 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/pyproject.toml +1 -1
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/src/moat/lib/micro/__init__.py +6 -6
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2/src/moat_lib_micro.egg-info}/PKG-INFO +1 -1
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/LICENSE.txt +0 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/Makefile +0 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/README.md +0 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/debian/.gitignore +0 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/debian/control +0 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/debian/rules +0 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/setup.cfg +0 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/src/moat_lib_micro.egg-info/SOURCES.txt +0 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/src/moat_lib_micro.egg-info/dependency_links.txt +0 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/src/moat_lib_micro.egg-info/requires.txt +0 -0
- {moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/src/moat_lib_micro.egg-info/top_level.txt +0 -0
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
moat-lib-micro (0.3.2-1) unstable; urgency=medium
|
|
2
|
+
|
|
3
|
+
* New release for 26.1.10
|
|
4
|
+
|
|
5
|
+
-- Matthias Urlichs <matthias@urlichs.de> Thu, 23 Apr 2026 21:16:05 +0200
|
|
6
|
+
|
|
7
|
+
moat-lib-micro (0.3.1-2) unstable; urgency=medium
|
|
8
|
+
|
|
9
|
+
* New release for 26.0.12
|
|
10
|
+
|
|
11
|
+
-- Matthias Urlichs <matthias@urlichs.de> Wed, 04 Mar 2026 11:00:47 +0100
|
|
12
|
+
|
|
1
13
|
moat-lib-micro (0.3.1-1) unstable; urgency=medium
|
|
2
14
|
|
|
3
15
|
* New release for 26.0.11
|
|
@@ -21,7 +21,7 @@ name = "moat-lib-micro"
|
|
|
21
21
|
maintainers = [{email = "matthias@urlichs.de",name = "Matthias Urlichs"}]
|
|
22
22
|
description='Compatibility layer for CPython/anyio and MicroPython/uasyncio'
|
|
23
23
|
readme = "README.md"
|
|
24
|
-
version = "0.3.
|
|
24
|
+
version = "0.3.2"
|
|
25
25
|
|
|
26
26
|
[project.urls]
|
|
27
27
|
homepage = "https://m-o-a-t.org"
|
|
@@ -94,7 +94,7 @@ if TYPE_CHECKING:
|
|
|
94
94
|
self,
|
|
95
95
|
p: Callable[P, Awaitable[Any]],
|
|
96
96
|
*a: P.args,
|
|
97
|
-
_name: str | None = None,
|
|
97
|
+
_name: str | None = None, # ty:ignore[invalid-paramspec]
|
|
98
98
|
**k: P.kwargs,
|
|
99
99
|
) -> _anyio.CancelScope: ...
|
|
100
100
|
|
|
@@ -102,7 +102,7 @@ if TYPE_CHECKING:
|
|
|
102
102
|
self,
|
|
103
103
|
p: Callable[P, Awaitable[Any]],
|
|
104
104
|
*a: P.args,
|
|
105
|
-
_name: str | None = None,
|
|
105
|
+
_name: str | None = None, # ty:ignore[invalid-paramspec]
|
|
106
106
|
**k: P.kwargs,
|
|
107
107
|
) -> None: ...
|
|
108
108
|
|
|
@@ -397,7 +397,7 @@ def TaskGroup() -> _TaskGroupProto: # Returns augmented TaskGroup instance
|
|
|
397
397
|
if tgt is not _tgt:
|
|
398
398
|
_tgt = tgt
|
|
399
399
|
|
|
400
|
-
class TaskGroup_(_tgt): #
|
|
400
|
+
class TaskGroup_(_tgt): # ty:ignore[unsupported-base]
|
|
401
401
|
"""An augmented taskgroup"""
|
|
402
402
|
|
|
403
403
|
async def spawn(
|
|
@@ -526,7 +526,7 @@ def ACM(obj: Any) -> Callable[[Any], Awaitable[Any]]:
|
|
|
526
526
|
obj._AC_ = []
|
|
527
527
|
|
|
528
528
|
cm = AsyncExitStack()
|
|
529
|
-
cm._moat_ac_task = _ac_task_id() # noqa:SLF001 #
|
|
529
|
+
cm._moat_ac_task = _ac_task_id() # noqa:SLF001 # ty:ignore[unresolved-attribute]
|
|
530
530
|
obj._AC_.append(cm)
|
|
531
531
|
|
|
532
532
|
# AsyncExitStack.__aenter__ is a no-op. We don't depend on that, but at
|
|
@@ -606,5 +606,5 @@ def is_async(obj: Any) -> bool:
|
|
|
606
606
|
async def to_thread(p: Callable[..., R], *a, **k) -> R:
|
|
607
607
|
"""run this function in a thread"""
|
|
608
608
|
if k:
|
|
609
|
-
return await _anyio.to_thread.run_sync(partial(p, *a, **k), abandon_on_cancel=True) #
|
|
610
|
-
return await _anyio.to_thread.run_sync(p, *a, abandon_on_cancel=True) #
|
|
609
|
+
return await _anyio.to_thread.run_sync(partial(p, *a, **k), abandon_on_cancel=True) # ty:ignore[unresolved-attribute]
|
|
610
|
+
return await _anyio.to_thread.run_sync(p, *a, abandon_on_cancel=True) # ty:ignore[unresolved-attribute]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{moat_lib_micro-0.3.1 → moat_lib_micro-0.3.2}/src/moat_lib_micro.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|