omlish 0.0.0.dev260__py3-none-any.whl → 0.0.0.dev262__py3-none-any.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.
- omlish/__about__.py +2 -2
- omlish/asyncs/anyio/sync.py +3 -0
- omlish/asyncs/asyncio/channels.py +3 -0
- omlish/asyncs/asyncio/sockets.py +3 -0
- omlish/asyncs/asyncio/streams.py +3 -0
- omlish/asyncs/asyncio/timeouts.py +3 -0
- omlish/asyncs/trio_asyncio.py +3 -0
- omlish/c3.py +25 -5
- omlish/collections/sorted/skiplist.py +16 -0
- omlish/dataclasses/impl/fields.py +2 -4
- omlish/diag/asts.py +4 -1
- omlish/dynamic.py +0 -1
- omlish/lang/clsdct.py +13 -1
- omlish/metadata.py +1 -0
- omlish/os/deathpacts/pipe.py +4 -0
- omlish/os/forkhooks.py +2 -2
- omlish/os/pidfiles/manager.py +2 -3
- omlish/os/pidfiles/pidfile.py +9 -7
- {omlish-0.0.0.dev260.dist-info → omlish-0.0.0.dev262.dist-info}/METADATA +1 -1
- {omlish-0.0.0.dev260.dist-info → omlish-0.0.0.dev262.dist-info}/RECORD +24 -25
- omlish/_antlr/__init__.py +0 -0
- {omlish-0.0.0.dev260.dist-info → omlish-0.0.0.dev262.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev260.dist-info → omlish-0.0.0.dev262.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev260.dist-info → omlish-0.0.0.dev262.dist-info}/licenses/LICENSE +0 -0
- {omlish-0.0.0.dev260.dist-info → omlish-0.0.0.dev262.dist-info}/top_level.txt +0 -0
omlish/__about__.py
CHANGED
omlish/asyncs/anyio/sync.py
CHANGED
omlish/asyncs/asyncio/sockets.py
CHANGED
omlish/asyncs/asyncio/streams.py
CHANGED
omlish/asyncs/trio_asyncio.py
CHANGED
omlish/c3.py
CHANGED
@@ -33,6 +33,7 @@
|
|
33
33
|
#
|
34
34
|
# 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this
|
35
35
|
# License Agreement.
|
36
|
+
import functools
|
36
37
|
import operator
|
37
38
|
import typing as ta
|
38
39
|
|
@@ -70,12 +71,17 @@ def merge(seqs: ta.MutableSequence[list[T]]) -> list[T]:
|
|
70
71
|
del seq[0]
|
71
72
|
|
72
73
|
|
74
|
+
def _default_is_abstract(obj: ta.Any) -> bool:
|
75
|
+
return hasattr(obj, '__abstractmethods__')
|
76
|
+
|
77
|
+
|
73
78
|
def mro(
|
74
79
|
cls: T,
|
75
80
|
abcs: ta.Sequence[T] | None = None,
|
76
81
|
*,
|
77
82
|
get_bases: ta.Callable[[T], ta.Sequence[T]] = operator.attrgetter('__bases__'),
|
78
83
|
is_subclass: ta.Callable[[T, T], bool] = issubclass, # type: ignore
|
84
|
+
is_abstract: ta.Callable[[T], bool] = _default_is_abstract,
|
79
85
|
) -> list[T]:
|
80
86
|
"""
|
81
87
|
Computes the method resolution order using extended C3 linearization.
|
@@ -91,7 +97,7 @@ def mro(
|
|
91
97
|
"""
|
92
98
|
|
93
99
|
for i, base in enumerate(reversed(get_bases(cls))):
|
94
|
-
if
|
100
|
+
if is_abstract(base):
|
95
101
|
boundary = len(get_bases(cls)) - i
|
96
102
|
break # Bases up to the last explicit ABC are considered first.
|
97
103
|
else:
|
@@ -109,9 +115,16 @@ def mro(
|
|
109
115
|
abstract_bases.append(base)
|
110
116
|
for base in abstract_bases:
|
111
117
|
abcs.remove(base)
|
112
|
-
|
113
|
-
|
114
|
-
|
118
|
+
rec = functools.partial(
|
119
|
+
mro,
|
120
|
+
abcs=abcs,
|
121
|
+
get_bases=get_bases,
|
122
|
+
is_subclass=is_subclass,
|
123
|
+
is_abstract=is_abstract,
|
124
|
+
)
|
125
|
+
explicit_c3_mros = [rec(base) for base in explicit_bases]
|
126
|
+
abstract_c3_mros = [rec(base) for base in abstract_bases]
|
127
|
+
other_c3_mros = [rec(base) for base in other_bases]
|
115
128
|
return merge(
|
116
129
|
[[cls]] + # noqa
|
117
130
|
explicit_c3_mros + abstract_c3_mros + other_c3_mros +
|
@@ -127,6 +140,7 @@ def compose_mro(
|
|
127
140
|
get_bases: ta.Callable[[T], ta.Sequence[T]] = operator.attrgetter('__bases__'),
|
128
141
|
is_subclass: ta.Callable[[T, T], bool] = issubclass, # type: ignore
|
129
142
|
get_subclasses: ta.Callable[[T], ta.Iterable[T]] = operator.methodcaller('__subclasses__'),
|
143
|
+
is_abstract: ta.Callable[[T], bool] = _default_is_abstract,
|
130
144
|
) -> list[T]:
|
131
145
|
"""
|
132
146
|
Calculates the method resolution order for a given class *cls*.
|
@@ -171,4 +185,10 @@ def compose_mro(
|
|
171
185
|
if subcls not in _mro:
|
172
186
|
_mro.append(subcls)
|
173
187
|
|
174
|
-
return mro(
|
188
|
+
return mro(
|
189
|
+
cls,
|
190
|
+
abcs=_mro,
|
191
|
+
get_bases=get_bases,
|
192
|
+
is_subclass=is_subclass,
|
193
|
+
is_abstract=is_abstract,
|
194
|
+
)
|
@@ -10,6 +10,9 @@ K = ta.TypeVar('K')
|
|
10
10
|
V = ta.TypeVar('V')
|
11
11
|
|
12
12
|
|
13
|
+
##
|
14
|
+
|
15
|
+
|
13
16
|
class SkipList(SortedCollection[T]):
|
14
17
|
"""https://gist.github.com/icejoywoo/3bf0c54983a725fa3917"""
|
15
18
|
|
@@ -59,6 +62,8 @@ class SkipList(SortedCollection[T]):
|
|
59
62
|
self._head.next = [None] * self._max_height
|
60
63
|
self._length = 0
|
61
64
|
|
65
|
+
#
|
66
|
+
|
62
67
|
def __len__(self) -> int:
|
63
68
|
return self._length
|
64
69
|
|
@@ -68,6 +73,8 @@ class SkipList(SortedCollection[T]):
|
|
68
73
|
def __contains__(self, value: T) -> bool: # type: ignore
|
69
74
|
return self.find(value) is not None
|
70
75
|
|
76
|
+
#
|
77
|
+
|
71
78
|
def _random_level(self) -> int:
|
72
79
|
result = 1
|
73
80
|
while random.uniform(0, 1) < 0.5 and result < self._max_height:
|
@@ -108,6 +115,8 @@ class SkipList(SortedCollection[T]):
|
|
108
115
|
self._length += 1
|
109
116
|
return True
|
110
117
|
|
118
|
+
#
|
119
|
+
|
111
120
|
def _find(self, value: T) -> _Node | None:
|
112
121
|
if value is None:
|
113
122
|
raise TypeError(value)
|
@@ -128,6 +137,8 @@ class SkipList(SortedCollection[T]):
|
|
128
137
|
return None
|
129
138
|
return node.value # type: ignore
|
130
139
|
|
140
|
+
#
|
141
|
+
|
131
142
|
def remove(self, value: T) -> bool:
|
132
143
|
if value is None:
|
133
144
|
raise TypeError(value)
|
@@ -157,6 +168,8 @@ class SkipList(SortedCollection[T]):
|
|
157
168
|
self._length -= 1
|
158
169
|
return True
|
159
170
|
|
171
|
+
#
|
172
|
+
|
160
173
|
def iter(self, base: T | None = None) -> ta.Iterable[T]:
|
161
174
|
if base is not None:
|
162
175
|
cur = self._find(base)
|
@@ -187,6 +200,9 @@ class SkipList(SortedCollection[T]):
|
|
187
200
|
cur = cur.prev # type: ignore
|
188
201
|
|
189
202
|
|
203
|
+
##
|
204
|
+
|
205
|
+
|
190
206
|
class SkipListDict(SortedListDict[K, V]):
|
191
207
|
def __init__(self, *args, **kwargs) -> None:
|
192
208
|
super().__init__(SkipList(comparator=SortedListDict._item_comparator), *args, **kwargs) # noqa
|
@@ -174,14 +174,12 @@ def field_init(
|
|
174
174
|
|
175
175
|
value: str | None = None
|
176
176
|
if f.default_factory is not MISSING:
|
177
|
+
locals[default_name] = f.default_factory
|
177
178
|
if f.init:
|
178
|
-
locals[default_name] = f.default_factory
|
179
179
|
lines.append(f'if {f.name} is __dataclass_HAS_DEFAULT_FACTORY__: {f.name} = {default_name}()')
|
180
|
-
value = f.name
|
181
180
|
else:
|
182
|
-
locals[default_name] = f.default_factory
|
183
181
|
lines.append(f'{f.name} = {default_name}()')
|
184
|
-
|
182
|
+
value = f.name
|
185
183
|
|
186
184
|
elif f.init:
|
187
185
|
if f.default is MISSING:
|
omlish/diag/asts.py
CHANGED
@@ -15,6 +15,9 @@ else:
|
|
15
15
|
executing = lang.proxy_import('executing')
|
16
16
|
|
17
17
|
|
18
|
+
##
|
19
|
+
|
20
|
+
|
18
21
|
class ArgsRenderer:
|
19
22
|
"""
|
20
23
|
TODO:
|
@@ -50,7 +53,7 @@ class ArgsRenderer:
|
|
50
53
|
|
51
54
|
def _get_indented_text(
|
52
55
|
self,
|
53
|
-
src: executing.Source,
|
56
|
+
src: 'executing.Source',
|
54
57
|
node: ast.AST,
|
55
58
|
) -> str:
|
56
59
|
result = src.asttokens().get_text(node)
|
omlish/dynamic.py
CHANGED
omlish/lang/clsdct.py
CHANGED
@@ -4,6 +4,9 @@ import types
|
|
4
4
|
import typing as ta
|
5
5
|
|
6
6
|
|
7
|
+
##
|
8
|
+
|
9
|
+
|
7
10
|
_CLS_DCT_ATTR_SETS = [
|
8
11
|
{
|
9
12
|
'__module__',
|
@@ -35,8 +38,17 @@ def get_caller_cls_dct(offset: int = 0) -> ta.MutableMapping[str, ta.Any]:
|
|
35
38
|
return cls_dct
|
36
39
|
|
37
40
|
|
41
|
+
##
|
42
|
+
|
43
|
+
|
38
44
|
class ClassDctFn:
|
39
|
-
def __init__(
|
45
|
+
def __init__(
|
46
|
+
self,
|
47
|
+
fn: ta.Callable,
|
48
|
+
offset: int | None = None,
|
49
|
+
*,
|
50
|
+
wrap: bool = True,
|
51
|
+
) -> None:
|
40
52
|
super().__init__()
|
41
53
|
|
42
54
|
self._fn = fn
|
omlish/metadata.py
CHANGED
omlish/os/deathpacts/pipe.py
CHANGED
omlish/os/forkhooks.py
CHANGED
@@ -220,8 +220,8 @@ class ProcessOriginTracker:
|
|
220
220
|
def __init__(self, **kwargs: ta.Any) -> None:
|
221
221
|
super().__init__(**kwargs)
|
222
222
|
|
223
|
-
self._process_cookie: bytes
|
224
|
-
self._fork_depth: int
|
223
|
+
self._process_cookie: ta.Optional[bytes] = self._PROCESS_COOKIE
|
224
|
+
self._fork_depth: ta.Optional[int] = get_fork_depth()
|
225
225
|
|
226
226
|
def is_in_origin_process(self) -> bool:
|
227
227
|
return (self._PROCESS_COOKIE, get_fork_depth()) == (self._process_cookie, self._fork_depth)
|
omlish/os/pidfiles/manager.py
CHANGED
@@ -4,7 +4,6 @@ import contextlib
|
|
4
4
|
import os
|
5
5
|
import threading
|
6
6
|
import typing as ta
|
7
|
-
import weakref
|
8
7
|
|
9
8
|
from ...lite.check import check
|
10
9
|
from ..forkhooks import ForkHook
|
@@ -23,7 +22,7 @@ class _PidfileManager(ForkHook):
|
|
23
22
|
"""
|
24
23
|
|
25
24
|
_lock: ta.ClassVar[threading.Lock] = threading.Lock()
|
26
|
-
_pidfile_threads: ta.ClassVar[ta.MutableMapping[Pidfile, threading.Thread]] =
|
25
|
+
_pidfile_threads: ta.ClassVar[ta.MutableMapping[Pidfile, threading.Thread]] = {}
|
27
26
|
_num_kills: ta.ClassVar[int] = 0
|
28
27
|
|
29
28
|
@classmethod
|
@@ -66,8 +65,8 @@ class _PidfileManager(ForkHook):
|
|
66
65
|
|
67
66
|
with cls._lock:
|
68
67
|
cls._pidfile_threads[pf] = threading.current_thread()
|
69
|
-
try:
|
70
68
|
|
69
|
+
try:
|
71
70
|
with pf:
|
72
71
|
os.set_inheritable(check.not_none(pf.fileno()), True)
|
73
72
|
yield pf
|
omlish/os/pidfiles/pidfile.py
CHANGED
@@ -5,6 +5,7 @@ TODO:
|
|
5
5
|
- 'json pids', with code version? '.json.pid'? '.jpid'?
|
6
6
|
- json*L* pidfiles - first line is bare int, following may be json - now `head -n1 foo.pid` not cat
|
7
7
|
"""
|
8
|
+
import errno
|
8
9
|
import fcntl
|
9
10
|
import os
|
10
11
|
import signal
|
@@ -68,6 +69,7 @@ class Pidfile:
|
|
68
69
|
if hasattr(self, '_fd_to_dup'):
|
69
70
|
fd = os.dup(self._fd_to_dup)
|
70
71
|
del self._fd_to_dup
|
72
|
+
|
71
73
|
else:
|
72
74
|
ofl = os.O_RDWR
|
73
75
|
if not self._no_create:
|
@@ -80,11 +82,8 @@ class Pidfile:
|
|
80
82
|
|
81
83
|
f = os.fdopen(fd, 'r+')
|
82
84
|
|
83
|
-
except
|
84
|
-
|
85
|
-
os.close(fd)
|
86
|
-
except Exception: # noqa
|
87
|
-
pass
|
85
|
+
except BaseException:
|
86
|
+
os.close(fd)
|
88
87
|
raise
|
89
88
|
|
90
89
|
self._f = f
|
@@ -129,8 +128,11 @@ class Pidfile:
|
|
129
128
|
fcntl.flock(self._f, fcntl.LOCK_EX | fcntl.LOCK_NB)
|
130
129
|
return True
|
131
130
|
|
132
|
-
except
|
133
|
-
|
131
|
+
except BlockingIOError as e:
|
132
|
+
if e.errno == errno.EAGAIN:
|
133
|
+
return False
|
134
|
+
else:
|
135
|
+
raise
|
134
136
|
|
135
137
|
#
|
136
138
|
|
@@ -1,18 +1,17 @@
|
|
1
1
|
omlish/.manifests.json,sha256=x26AIwDzScUvnX-p4xlq6Zc5QYrAo0Vmgf1qHc1KL_M,8253
|
2
|
-
omlish/__about__.py,sha256=
|
2
|
+
omlish/__about__.py,sha256=BXH7qKqT5OctoZyedUgGC-oA114ZNwHwtmurxgA2dUE,3380
|
3
3
|
omlish/__init__.py,sha256=SsyiITTuK0v74XpKV8dqNaCmjOlan1JZKrHQv5rWKPA,253
|
4
|
-
omlish/c3.py,sha256=
|
4
|
+
omlish/c3.py,sha256=A9uZG39e7093HTWToNKZ91cFVTCbAVySgl3nShTGqVY,8409
|
5
5
|
omlish/cached.py,sha256=MLap_p0rdGoDIMVhXVHm1tsbcWobJF0OanoodV03Ju8,542
|
6
6
|
omlish/check.py,sha256=THqm6jD1a0skAO5EC8SOVg58yq96Vk5wcuruBkCYxyU,2016
|
7
7
|
omlish/datetimes.py,sha256=HajeM1kBvwlTa-uR1TTZHmZ3zTPnnUr1uGGQhiO1XQ0,2152
|
8
8
|
omlish/defs.py,sha256=9uUjJuVIbCBL3g14fyzAp-9gH935MFofvlfOGwcBIaM,4913
|
9
|
-
omlish/dynamic.py,sha256=
|
9
|
+
omlish/dynamic.py,sha256=Zymfvti3LSM6BR8YjuSYRYfKiojEgrGUpqaEAOJ8lEw,6521
|
10
10
|
omlish/libc.py,sha256=8K4c66YV1ziJerl5poAAYCmsV-VSsHkT3EHhPW04ufg,15639
|
11
|
-
omlish/metadata.py,sha256=
|
11
|
+
omlish/metadata.py,sha256=HvZ6ItMpEmnE-X2d5Q6J17sBiG_qOyWB8DJrS9RFZpY,3604
|
12
12
|
omlish/runmodule.py,sha256=PWvuAaJ9wQQn6bx9ftEL3_d04DyotNn8dR_twm2pgw0,700
|
13
13
|
omlish/shlex.py,sha256=bsW2XUD8GiMTUTDefJejZ5AyqT1pTgWMPD0BMoF02jE,248
|
14
14
|
omlish/sync.py,sha256=-2gVJZFl8hvp7jvrnX8GcZVOecqAym6AcyK1QtMR9Ic,2979
|
15
|
-
omlish/_antlr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
15
|
omlish/algorithm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
16
|
omlish/algorithm/all.py,sha256=FudUHwoaRLNNmqYM3jhP2Yd2BpmYhNBRPaVZzARMoSc,194
|
18
17
|
omlish/algorithm/distribute.py,sha256=kO60F7HtMF3j-IxuhJdtsfgIR1Vpf1okQfacb4eNukQ,1533
|
@@ -96,23 +95,23 @@ omlish/asyncs/buffers.py,sha256=ip9oDRT-XbBDpeAa72osv-TtZXxdF_ggW4lHkGKxCwE,1418
|
|
96
95
|
omlish/asyncs/flavors.py,sha256=1mNxGNRVmjUHzA13K5ht8vdJv4CLEmzYTQ6BZXr1520,4866
|
97
96
|
omlish/asyncs/sync.py,sha256=qfK8zRMQ0B_huC-6CsMG8vhKB0ktw7Ttq0NnySdWPwQ,2039
|
98
97
|
omlish/asyncs/trio.py,sha256=fmZ5b_lKdVV8NQ3euCUutWgnkqTFzSnOjvJSA_jvmrE,367
|
99
|
-
omlish/asyncs/trio_asyncio.py,sha256=
|
98
|
+
omlish/asyncs/trio_asyncio.py,sha256=b6H5H32pB79Uz5xvWEmuhXTJgTAeKFHBHzocv_Rpt5A,1332
|
100
99
|
omlish/asyncs/utils.py,sha256=1QQMQ1WJBG86QLu4hQZRBFeUg-AypCVhlB8-niHHE4s,400
|
101
100
|
omlish/asyncs/anyio/__init__.py,sha256=AkwRD3XFWmEzBeHV-eAzwpA4F04bl7xyyapigrxMR8g,1747
|
102
101
|
omlish/asyncs/anyio/backends.py,sha256=jJIymWoiedaEJJm82gvKiJ41EWLQZ-bcyNHpbDpKKi4,1584
|
103
102
|
omlish/asyncs/anyio/futures.py,sha256=Nm1gLerZEnHk-rlsmr0UfK168IWIK6zA8EebZFtoY_E,2052
|
104
103
|
omlish/asyncs/anyio/signals.py,sha256=ySSut5prdnoy0-5Ws5V1M4cC2ON_vY550vU10d2NHk8,893
|
105
104
|
omlish/asyncs/anyio/streams.py,sha256=gNRAcHR0L8OtNioqKFbq0Z_apYAWKHFipZ2MUBp8Vg0,2228
|
106
|
-
omlish/asyncs/anyio/sync.py,sha256=
|
105
|
+
omlish/asyncs/anyio/sync.py,sha256=ZmSNhSsEkPwlXThrpefhtVTxw4GJ9F0P-yKyo5vbbSk,1574
|
107
106
|
omlish/asyncs/anyio/utils.py,sha256=X2Rz1DGrCJ0zkt1O5cHoMRaYKTPndBj6dzLhb09mVtE,1672
|
108
107
|
omlish/asyncs/asyncio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
108
|
omlish/asyncs/asyncio/all.py,sha256=EksCHjRQKobiGrxuDW72IaH53WJMs7rdj_ZDBI3iKcg,315
|
110
109
|
omlish/asyncs/asyncio/asyncio.py,sha256=mDjYNm1cylUhQ8slWXwdPoXasuWfafjzu78GHt2Mdig,2437
|
111
|
-
omlish/asyncs/asyncio/channels.py,sha256=
|
112
|
-
omlish/asyncs/asyncio/sockets.py,sha256=
|
113
|
-
omlish/asyncs/asyncio/streams.py,sha256=
|
110
|
+
omlish/asyncs/asyncio/channels.py,sha256=X3S951YTjTRDguMSQRlfu74mPuWkNd2ZEUWboLY58-M,1079
|
111
|
+
omlish/asyncs/asyncio/sockets.py,sha256=oZAPeC545MGeSpVj_uQfy-BbzXsXHesjCkJSiuqKmAI,1271
|
112
|
+
omlish/asyncs/asyncio/streams.py,sha256=J_d1hgX4Mx9SfyW4DjOzh91PqzZmjOtiIB95ytF8Ygw,1009
|
114
113
|
omlish/asyncs/asyncio/subprocesses.py,sha256=f30-wi-3n9R5dftm4CMrzp23EEa4GX283bORixm1_UU,6931
|
115
|
-
omlish/asyncs/asyncio/timeouts.py,sha256=
|
114
|
+
omlish/asyncs/asyncio/timeouts.py,sha256=LwFx93KSrefBobQoK4-yH5B6M-pbd7NdNksNzLBfLgQ,459
|
116
115
|
omlish/asyncs/bluelet/LICENSE,sha256=VHf3oPQihOHnWyIR8LcXX0dpONa1lgyJnjWC2qVuRR0,559
|
117
116
|
omlish/asyncs/bluelet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
118
117
|
omlish/asyncs/bluelet/all.py,sha256=aUV6PwnR8DqnEBS9wsZuPW_UtP6G9M8_KY-mmxZeVG0,1516
|
@@ -165,7 +164,7 @@ omlish/collections/persistent/persistent.py,sha256=KG471s0bhhReQrjlmX0xaN9HeAIcr
|
|
165
164
|
omlish/collections/persistent/treap.py,sha256=A09ZPacGyJlyRB-Wi4TNj3tE0w-RpFNliPgpDaa6Vwg,7719
|
166
165
|
omlish/collections/persistent/treapmap.py,sha256=TxOM-ZRF5PK2xe5wRIhESNt7DGh9b_MeZfE7HLkCOs4,5804
|
167
166
|
omlish/collections/sorted/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
-
omlish/collections/sorted/skiplist.py,sha256=
|
167
|
+
omlish/collections/sorted/skiplist.py,sha256=tybcD8OslDBCc86Z1qKb4GRkbhMY26qorPzPIeqFmKk,6031
|
169
168
|
omlish/collections/sorted/sorted.py,sha256=euHJan3FqTYSCJGsVcYYRV-yhAAQ5_htnjymnNoVHRE,3319
|
170
169
|
omlish/concurrent/__init__.py,sha256=9p-s8MvBEYDqHIoYU3OYoe-Nni22QdkW7nhZGEukJTM,197
|
171
170
|
omlish/concurrent/executors.py,sha256=mF-rjJWzNFxwB1-_H7rHuwoImpl4FtNM6W3wcqM3NEE,1291
|
@@ -205,7 +204,7 @@ omlish/dataclasses/impl/as_.py,sha256=CD-t7hkC1EP2F_jvZKIA_cVoDuwZ-Ln_xC4fJumPYX
|
|
205
204
|
omlish/dataclasses/impl/copy.py,sha256=Tn8_n6Vohs-w4otbGdubBEvhd3TsSTaM3EfNGdS2LYo,591
|
206
205
|
omlish/dataclasses/impl/descriptors.py,sha256=jSYNkKdy2rKddGpQqRwNuhw-ggpcvp_SWHpLwIWPOzc,2474
|
207
206
|
omlish/dataclasses/impl/exceptions.py,sha256=-vqxZmfXVflymVuiM553XTlJProse5HEMktTpfdPCIY,1275
|
208
|
-
omlish/dataclasses/impl/fields.py,sha256=
|
207
|
+
omlish/dataclasses/impl/fields.py,sha256=jM2Rvu6DQOfRUrZBMOeJMda-CT5JKXQvJKzoIU_LFxc,6897
|
209
208
|
omlish/dataclasses/impl/frozen.py,sha256=x87DSM8FIMZ3c_BIUE8NooCkExFjPsabeqIueEP5qKs,2988
|
210
209
|
omlish/dataclasses/impl/hashing.py,sha256=0Gr6XIRkKy4pr-mdHblIlQCy3mBxycjMqJk3oZDw43s,3215
|
211
210
|
omlish/dataclasses/impl/init.py,sha256=drt_-697uw2xp0FGj9AYlMbiuSfYRNV3-8JxTPzkP_w,6415
|
@@ -224,7 +223,7 @@ omlish/dataclasses/impl/simple.py,sha256=tr1WkNuUZ3upyrLBea6RV5Jb_2YsBxisSrGPN_X
|
|
224
223
|
omlish/dataclasses/impl/slots.py,sha256=qXRLbtFWUs_2UV1fFUdv53_6fBLKJ_8McjNiP9YQlGM,5264
|
225
224
|
omlish/dataclasses/impl/utils.py,sha256=aER2iL3UAtgS1BdLuEvTr9Tr2wC28wk1kiOeO-jIymw,6138
|
226
225
|
omlish/diag/__init__.py,sha256=4S8v0myJM4Zld6_FV6cPe_nSv0aJb6kXftEit0HkiGE,1141
|
227
|
-
omlish/diag/asts.py,sha256=
|
226
|
+
omlish/diag/asts.py,sha256=MWh9XAG3m9L10FIJCyoNT2aU4Eft6tun_x9K0riq6Dk,3332
|
228
227
|
omlish/diag/debug.py,sha256=ClED7kKXeVMyKrjGIxcq14kXk9kvUJfytBQwK9y7c4Q,1637
|
229
228
|
omlish/diag/lslocks.py,sha256=fWI3SZwgEkhipVfSqvzVzREJRShcDYmlYByHBT0LToc,1744
|
230
229
|
omlish/diag/lsof.py,sha256=DnowqvKYah-WCuBHS3DAcZCvlsWJdM9kYNFq97UZDDA,9127
|
@@ -410,7 +409,7 @@ omlish/iterators/tools.py,sha256=Pi4ybXytUXVZ3xwK89xpPImQfYYId9p1vIFQvVqVLqA,255
|
|
410
409
|
omlish/iterators/unique.py,sha256=0jAX3kwzVfRNhe0Tmh7kVP_Q2WBIn8POo_O-rgFV0rQ,1390
|
411
410
|
omlish/lang/__init__.py,sha256=H-kPgztXCiOneAvYeC1YxN8nMQu_gYBY2hwy8-dxHvs,5064
|
412
411
|
omlish/lang/attrs.py,sha256=fofCKN0X8TMu1yGqHpLpNLih9r9HWl3D3Vn3b6O791w,3891
|
413
|
-
omlish/lang/clsdct.py,sha256=
|
412
|
+
omlish/lang/clsdct.py,sha256=HAGIvBSbCefzRjXriwYSBLO7QHKRv2UsE78jixOb-fA,1828
|
414
413
|
omlish/lang/collections.py,sha256=aGi0j6VzVe2nz4l357Y4RD5_XNl8OJbmM5qM6BclrrY,1895
|
415
414
|
omlish/lang/comparison.py,sha256=5vbzWWbqdzDmNKAGL19z6ZfUKe5Ci49e-Oegf9f4BsE,1346
|
416
415
|
omlish/lang/contextmanagers.py,sha256=UPH6daYwSP9cH5AfSVsJyEHk1UURMGhVPM5ZRhp_Hvw,7576
|
@@ -542,7 +541,7 @@ omlish/os/deathsig.py,sha256=hk9Yq2kyDdI-cI7OQH7mOfpRbOKzY_TfPKEqgrjVYbA,641
|
|
542
541
|
omlish/os/fcntl.py,sha256=riQf9iEEEIC28lJp8ud06MU56w2XJHJ9nBFtck_hdhc,1501
|
543
542
|
omlish/os/filemodes.py,sha256=ZIk6XpPw2oyoytSsuVmBXQ6fvMDHzctNEDIA2uHTBC4,4575
|
544
543
|
omlish/os/files.py,sha256=WJ_42vsZIZukQURN3TTccp-n74ZNhbux_ps3TLbHj18,1106
|
545
|
-
omlish/os/forkhooks.py,sha256=
|
544
|
+
omlish/os/forkhooks.py,sha256=STzhEuV7oOegfqlq1DJIhESO1icMzgat0V9m02Ubky8,5668
|
546
545
|
omlish/os/journald.py,sha256=2nI8Res1poXkbLc31--MPUlzYMESnCcPUkIxDOCjZW0,3903
|
547
546
|
omlish/os/linux.py,sha256=whJ6scwMKSFBdXiVhJW0BCpJV4jOGMr-a_a3Bhwz6Ls,18938
|
548
547
|
omlish/os/mangle.py,sha256=M0v-SDt4TMnL68I45GekQrUaXkTIILXIlPdqRxKBTKM,524
|
@@ -553,12 +552,12 @@ omlish/os/temp.py,sha256=P97KiVeNB7rfGn4tlgU5ro86JUxAsiphLMlxsjQgfB0,1198
|
|
553
552
|
omlish/os/deathpacts/__init__.py,sha256=IFJkHVWff-VhBbQX38th1RlmjUF2ptKh5TPIzP9Ei2M,229
|
554
553
|
omlish/os/deathpacts/base.py,sha256=EGN3BWSXPv0s9kl_QLrWE31hTybDHCmsLc_w3U2VyHc,1740
|
555
554
|
omlish/os/deathpacts/heartbeatfile.py,sha256=OybdvhM2kxBTuoJWOJJ5LcX-0lg3jTOvvD2HUunxDWU,1731
|
556
|
-
omlish/os/deathpacts/pipe.py,sha256=
|
555
|
+
omlish/os/deathpacts/pipe.py,sha256=mfN2UGsOaEmoh4jHi6D0vnjg420pNsyctb3ZTcNsdqI,3285
|
557
556
|
omlish/os/pidfiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
558
557
|
omlish/os/pidfiles/__main__.py,sha256=AF8TwjK4xgHVnoLAP9dIWgKvT0vGhHJlfDW0tKZ7tx4,200
|
559
558
|
omlish/os/pidfiles/cli.py,sha256=2SSsP4O3VdpsDIMAkWgWSjh_YNIPzCD9l5LNN2qrIjo,2074
|
560
|
-
omlish/os/pidfiles/manager.py,sha256=
|
561
|
-
omlish/os/pidfiles/pidfile.py,sha256=
|
559
|
+
omlish/os/pidfiles/manager.py,sha256=QphQxIENVVwvBWynLCNU31NwOfLkV43VoTVeYFn2Hac,2351
|
560
|
+
omlish/os/pidfiles/pidfile.py,sha256=9tI5IMVwfPfnni0XMn4x5ptNQgm36n8tLeUNPf50UqU,4394
|
562
561
|
omlish/os/pidfiles/pinning.py,sha256=v9RlJ4BnJZcaZZXiiRqbmzLluaSOkeeEb_WrbKEClBQ,6643
|
563
562
|
omlish/reflect/__init__.py,sha256=Er2yBHibVO16hFNA1szQF2_f43Y3HRCBWtS-fjsOIYc,798
|
564
563
|
omlish/reflect/inspect.py,sha256=WCo2YpBYauKw6k758FLlZ_H4Q05rgVPs96fEv9w6zHQ,1538
|
@@ -768,9 +767,9 @@ omlish/text/parts.py,sha256=Q9NvoyEGQKIWgiPD4D_Qc66cWAuyEKE033dT9m7c3Wk,6662
|
|
768
767
|
omlish/text/random.py,sha256=jNWpqiaKjKyTdMXC-pWAsSC10AAP-cmRRPVhm59ZWLk,194
|
769
768
|
omlish/text/go/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
770
769
|
omlish/text/go/quoting.py,sha256=N9EYdnFdEX_A8fOviH-1w4jwV3XOQ7VU2WsoUNubYVY,9137
|
771
|
-
omlish-0.0.0.
|
772
|
-
omlish-0.0.0.
|
773
|
-
omlish-0.0.0.
|
774
|
-
omlish-0.0.0.
|
775
|
-
omlish-0.0.0.
|
776
|
-
omlish-0.0.0.
|
770
|
+
omlish-0.0.0.dev262.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
771
|
+
omlish-0.0.0.dev262.dist-info/METADATA,sha256=LFyiHfPhM7912bihwnUNvFuGoCgIqW8_Pg9F4Ih5zUs,4198
|
772
|
+
omlish-0.0.0.dev262.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
773
|
+
omlish-0.0.0.dev262.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
|
774
|
+
omlish-0.0.0.dev262.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
|
775
|
+
omlish-0.0.0.dev262.dist-info/RECORD,,
|
omlish/_antlr/__init__.py
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|