omlish 0.0.0.dev255__py3-none-any.whl → 0.0.0.dev257__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/__init__.py +74 -0
- omlish/asyncs/anyio/backends.py +52 -0
- omlish/asyncs/anyio/futures.py +104 -0
- omlish/asyncs/anyio/signals.py +33 -0
- omlish/asyncs/anyio/streams.py +69 -0
- omlish/asyncs/anyio/sync.py +69 -0
- omlish/asyncs/anyio/utils.py +48 -0
- omlish/lang/__init__.py +12 -0
- omlish/{outcome.py → lang/outcomes.py} +74 -18
- omlish/specs/jsonrpc/__init__.py +20 -8
- omlish/specs/jsonrpc/types.py +33 -0
- omlish/sync.py +10 -0
- omlish/testing/pytest/plugins/asyncs/fixtures.py +2 -3
- omlish/text/go/__init__.py +0 -0
- omlish/text/go/quoting.py +260 -0
- {omlish-0.0.0.dev255.dist-info → omlish-0.0.0.dev257.dist-info}/METADATA +1 -1
- {omlish-0.0.0.dev255.dist-info → omlish-0.0.0.dev257.dist-info}/RECORD +22 -14
- omlish/asyncs/anyio.py +0 -273
- {omlish-0.0.0.dev255.dist-info → omlish-0.0.0.dev257.dist-info}/LICENSE +0 -0
- {omlish-0.0.0.dev255.dist-info → omlish-0.0.0.dev257.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev255.dist-info → omlish-0.0.0.dev257.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev255.dist-info → omlish-0.0.0.dev257.dist-info}/top_level.txt +0 -0
omlish/specs/jsonrpc/types.py
CHANGED
@@ -9,15 +9,21 @@ See:
|
|
9
9
|
- https://github.com/python-lsp/python-lsp-jsonrpc
|
10
10
|
"""
|
11
11
|
import operator
|
12
|
+
import types
|
12
13
|
import typing as ta
|
13
14
|
|
15
|
+
from ... import check
|
14
16
|
from ... import dataclasses as dc
|
15
17
|
from ... import lang
|
16
18
|
from ... import marshal as msh
|
17
19
|
|
18
20
|
|
21
|
+
NUMBER_TYPES: tuple[type, ...] = (int, float)
|
19
22
|
Number: ta.TypeAlias = int | float
|
23
|
+
|
20
24
|
Object: ta.TypeAlias = ta.Mapping[str, ta.Any]
|
25
|
+
|
26
|
+
ID_TYPES: tuple[type, ...] = (str, *NUMBER_TYPES, types.NoneType)
|
21
27
|
Id: ta.TypeAlias = str | Number | None
|
22
28
|
|
23
29
|
|
@@ -27,6 +33,9 @@ Id: ta.TypeAlias = str | Number | None
|
|
27
33
|
VERSION = '2.0'
|
28
34
|
|
29
35
|
|
36
|
+
##
|
37
|
+
|
38
|
+
|
30
39
|
class NotSpecified(lang.Marker):
|
31
40
|
pass
|
32
41
|
|
@@ -43,6 +52,14 @@ def is_not_specified(v: ta.Any) -> bool:
|
|
43
52
|
@msh.update_fields_metadata(['params'], omit_if=operator.not_)
|
44
53
|
class Request(lang.Final):
|
45
54
|
id: Id | type[NotSpecified]
|
55
|
+
|
56
|
+
@property
|
57
|
+
def is_notification(self) -> bool:
|
58
|
+
return self.id is NotSpecified
|
59
|
+
|
60
|
+
def id_value(self) -> Id:
|
61
|
+
return check.isinstance(self.id, ID_TYPES)
|
62
|
+
|
46
63
|
method: str
|
47
64
|
params: Object | None = None
|
48
65
|
|
@@ -50,6 +67,7 @@ class Request(lang.Final):
|
|
50
67
|
dc.validate(lambda self: self.jsonrpc == VERSION)
|
51
68
|
|
52
69
|
|
70
|
+
|
53
71
|
def request(id: Id, method: str, params: Object | None = None) -> Request: # noqa
|
54
72
|
return Request(id, method, params)
|
55
73
|
|
@@ -94,3 +112,18 @@ class Error(lang.Final):
|
|
94
112
|
|
95
113
|
def error(id: Id, error: Error) -> Response: # noqa
|
96
114
|
return Response(id, error=error)
|
115
|
+
|
116
|
+
|
117
|
+
##
|
118
|
+
|
119
|
+
|
120
|
+
Message: ta.TypeAlias = Request | Response | Error
|
121
|
+
|
122
|
+
|
123
|
+
def detect_message_type(dct: ta.Mapping[str, ta.Any]) -> type[Message]:
|
124
|
+
if 'method' in dct:
|
125
|
+
return Request
|
126
|
+
elif 'code' in dct:
|
127
|
+
return Error
|
128
|
+
else:
|
129
|
+
return Response
|
omlish/sync.py
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
TODO:
|
3
3
|
- sync (lol) w/ asyncs.anyio
|
4
4
|
- atomics
|
5
|
+
- Once poison=False, PoisonedError
|
5
6
|
"""
|
6
7
|
import collections
|
7
8
|
import threading
|
@@ -13,6 +14,9 @@ from . import lang
|
|
13
14
|
T = ta.TypeVar('T')
|
14
15
|
|
15
16
|
|
17
|
+
##
|
18
|
+
|
19
|
+
|
16
20
|
class Once:
|
17
21
|
def __init__(self) -> None:
|
18
22
|
super().__init__()
|
@@ -32,6 +36,9 @@ class Once:
|
|
32
36
|
return True
|
33
37
|
|
34
38
|
|
39
|
+
##
|
40
|
+
|
41
|
+
|
35
42
|
class Lazy(ta.Generic[T]):
|
36
43
|
def __init__(self) -> None:
|
37
44
|
super().__init__()
|
@@ -71,6 +78,9 @@ class LazyFn(ta.Generic[T]):
|
|
71
78
|
return self._v.must()
|
72
79
|
|
73
80
|
|
81
|
+
##
|
82
|
+
|
83
|
+
|
74
84
|
class ConditionDeque(ta.Generic[T]):
|
75
85
|
def __init__(
|
76
86
|
self,
|
@@ -27,7 +27,6 @@ from _pytest.outcomes import XFailed # noqa
|
|
27
27
|
|
28
28
|
from ..... import check
|
29
29
|
from ..... import lang
|
30
|
-
from ..... import outcome
|
31
30
|
from .backends.base import AsyncsBackend
|
32
31
|
from .utils import is_coroutine_function
|
33
32
|
|
@@ -225,14 +224,14 @@ class AsyncsFixture:
|
|
225
224
|
# process), save any exception that *isn't* Cancelled (because if its Cancelled then we can't route it to
|
226
225
|
# the right place, and anyway the teardown code will get it again if it matters), and then use a shield to
|
227
226
|
# keep waiting for the teardown to finish without having to worry about cancellation.
|
228
|
-
yield_outcome:
|
227
|
+
yield_outcome: lang.Outcome = lang.Value(None)
|
229
228
|
try:
|
230
229
|
for event in self.user_done_events:
|
231
230
|
await event.wait()
|
232
231
|
|
233
232
|
except BaseException as exc: # noqa
|
234
233
|
check.isinstance(exc, anyio.get_cancelled_exc_class())
|
235
|
-
yield_outcome =
|
234
|
+
yield_outcome = lang.Error(exc)
|
236
235
|
test_ctx.crash(self, None)
|
237
236
|
with anyio.CancelScope(shield=True):
|
238
237
|
for event in self.user_done_events:
|
File without changes
|
@@ -0,0 +1,260 @@
|
|
1
|
+
# ruff: noqa: Q000
|
2
|
+
"""
|
3
|
+
https:#github.com/golang/go/blob/3d33437c450aa74014ea1d41cd986b6ee6266984/src/strconv/quote.go
|
4
|
+
"""
|
5
|
+
# Copyright 2009 The Go Authors.
|
6
|
+
#
|
7
|
+
# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
8
|
+
# following conditions are met:
|
9
|
+
#
|
10
|
+
# * Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
11
|
+
# disclaimer.
|
12
|
+
# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
13
|
+
# following disclaimer in the documentation and/or other materials provided with the distribution.
|
14
|
+
# * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products
|
15
|
+
# derived from this software without specific prior written permission.
|
16
|
+
#
|
17
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
18
|
+
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
19
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
20
|
+
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
21
|
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
22
|
+
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
23
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
24
|
+
|
25
|
+
|
26
|
+
def unhex(b: str) -> int | None:
|
27
|
+
c = ord(b)
|
28
|
+
if ord('0') <= c <= ord('9'):
|
29
|
+
return c - ord('0')
|
30
|
+
elif ord('a') <= c <= ord('f'):
|
31
|
+
return c - ord('a') + 10
|
32
|
+
elif ord('A') <= c <= ord('F'):
|
33
|
+
return c - ord('A') + 10
|
34
|
+
else:
|
35
|
+
return None
|
36
|
+
|
37
|
+
|
38
|
+
SURROGATE_MIN = 0xD800
|
39
|
+
SURROGATE_MAX = 0xDFFF
|
40
|
+
MAX_RUNE = ord('\U0010FFFF') # Maximum valid Unicode code point.
|
41
|
+
|
42
|
+
|
43
|
+
def is_valid_utf8(r: int) -> bool:
|
44
|
+
if 0 <= r < SURROGATE_MIN:
|
45
|
+
return True
|
46
|
+
elif SURROGATE_MAX < r <= MAX_RUNE:
|
47
|
+
return True
|
48
|
+
return False
|
49
|
+
|
50
|
+
|
51
|
+
##
|
52
|
+
|
53
|
+
|
54
|
+
class UnquoteError(Exception):
|
55
|
+
pass
|
56
|
+
|
57
|
+
|
58
|
+
def unquote_char(s: str, quote: str) -> tuple[str, bool, str]: # (value, multibyte, tail)
|
59
|
+
# UnquoteChar decodes the first character or byte in the escaped string or character literal represented by the
|
60
|
+
# string s. It returns four values:
|
61
|
+
#
|
62
|
+
# 1. value, the decoded Unicode code point or byte value;
|
63
|
+
# 2. multibyte, a boolean indicating whether the decoded character requires a multibyte UTF-8 representation;
|
64
|
+
# 3. tail, the remainder of the string after the character; and
|
65
|
+
# 4. an error that will be nil if the character is syntactically valid.
|
66
|
+
#
|
67
|
+
# The second argument, quote, specifies the type of literal being parsed and therefore which escaped quote character
|
68
|
+
# is permitted.
|
69
|
+
# If set to a single quote, it permits the sequence \' and disallows unescaped '.
|
70
|
+
# If set to a double quote, it permits \" and disallows unescaped ".
|
71
|
+
# If set to zero, it does not permit either escape and allows both quote characters to appear unescaped.
|
72
|
+
|
73
|
+
# easy cases
|
74
|
+
if not s:
|
75
|
+
raise UnquoteError
|
76
|
+
|
77
|
+
c = s[0]
|
78
|
+
if c == quote and quote in '\'"':
|
79
|
+
raise UnquoteError
|
80
|
+
# elif c >= utf8.graphic_only:
|
81
|
+
# r, size = utf8.DecodeRuneInString(s)
|
82
|
+
# return r, True, s[size:]
|
83
|
+
elif c != '\\':
|
84
|
+
return s[0], False, s[1:]
|
85
|
+
|
86
|
+
# hard case: c is backslash
|
87
|
+
if len(s) <= 1:
|
88
|
+
raise UnquoteError
|
89
|
+
|
90
|
+
c = s[1]
|
91
|
+
s = s[2:]
|
92
|
+
value: str
|
93
|
+
multibyte = False
|
94
|
+
|
95
|
+
if c == 'a':
|
96
|
+
value = '\a'
|
97
|
+
elif c == 'b':
|
98
|
+
value = '\b'
|
99
|
+
elif c == 'f':
|
100
|
+
value = '\f'
|
101
|
+
elif c == 'n':
|
102
|
+
value = '\n'
|
103
|
+
elif c == 'r':
|
104
|
+
value = '\r'
|
105
|
+
elif c == 't':
|
106
|
+
value = '\t'
|
107
|
+
elif c == 'v':
|
108
|
+
value = '\v'
|
109
|
+
elif c in 'xuU':
|
110
|
+
n = 0
|
111
|
+
if c == 'x':
|
112
|
+
n = 2
|
113
|
+
elif c == 'u':
|
114
|
+
n = 4
|
115
|
+
elif c == 'U':
|
116
|
+
n = 8
|
117
|
+
if len(s) < n:
|
118
|
+
raise UnquoteError
|
119
|
+
v = 0
|
120
|
+
for j in range(n):
|
121
|
+
x = unhex(s[j])
|
122
|
+
if x is None:
|
123
|
+
raise UnquoteError
|
124
|
+
v = v << 4 | x
|
125
|
+
s = s[n:]
|
126
|
+
if c == 'x':
|
127
|
+
try:
|
128
|
+
value = chr(v) # noqa
|
129
|
+
except ValueError:
|
130
|
+
raise UnquoteError from None
|
131
|
+
else:
|
132
|
+
# single-byte string, possibly not UTF-8
|
133
|
+
if not is_valid_utf8(v):
|
134
|
+
raise UnquoteError
|
135
|
+
try:
|
136
|
+
value = chr(v) # noqa
|
137
|
+
except ValueError:
|
138
|
+
raise UnquoteError from None
|
139
|
+
multibyte = True
|
140
|
+
elif c in '01234567':
|
141
|
+
v = ord(c) - ord('0')
|
142
|
+
if len(s) < 2:
|
143
|
+
raise UnquoteError
|
144
|
+
for j in range(2): # one digit already; two more
|
145
|
+
x = ord(s[j]) - ord('0')
|
146
|
+
if x < 0 or x > 7:
|
147
|
+
raise UnquoteError
|
148
|
+
v = (v << 3) | x
|
149
|
+
s = s[2:]
|
150
|
+
if v > 255:
|
151
|
+
raise UnquoteError
|
152
|
+
value = chr(v)
|
153
|
+
elif c == '\\':
|
154
|
+
value = '\\'
|
155
|
+
elif c in ('\'', '"'):
|
156
|
+
if c != quote:
|
157
|
+
raise UnquoteError
|
158
|
+
value = c
|
159
|
+
else:
|
160
|
+
raise UnquoteError
|
161
|
+
|
162
|
+
tail = s
|
163
|
+
return value, multibyte, tail
|
164
|
+
|
165
|
+
|
166
|
+
def unquote_(ins: str, unescape: bool) -> tuple[str, str]: # (out, rem)
|
167
|
+
# unquote parses a quoted string at the start of the input, returning the parsed prefix, the remaining suffix, and
|
168
|
+
# any parse errors. If unescape is true, the parsed prefix is unescaped, otherwise the input prefix is provided
|
169
|
+
# verbatim.
|
170
|
+
|
171
|
+
# Determine the quote form and optimistically find the terminating quote.
|
172
|
+
if len(ins) < 2:
|
173
|
+
raise UnquoteError
|
174
|
+
quote = ins[0]
|
175
|
+
end = ins[1:].find(quote)
|
176
|
+
if end < 0:
|
177
|
+
raise UnquoteError
|
178
|
+
end += 2 # position after terminating quote; may be wrong if escape sequences are present
|
179
|
+
|
180
|
+
if quote == '`':
|
181
|
+
if not unescape:
|
182
|
+
out = ins[:end] # include quotes
|
183
|
+
elif '\r' not in ins[:end]:
|
184
|
+
out = ins[len("`"): end - len("`")] # exclude quotes
|
185
|
+
else:
|
186
|
+
# Carriage return characters ('\r') inside raw string literals are discarded from the raw string value.
|
187
|
+
buf = []
|
188
|
+
for i in range(len("`"), end - len("`")):
|
189
|
+
if ins[i] != '\r':
|
190
|
+
buf.append(ins[i])
|
191
|
+
out = ''.join(buf)
|
192
|
+
|
193
|
+
# NOTE: Prior implementations did not verify that raw strings consist of valid UTF-8 characters and we continue
|
194
|
+
# to not verify it as such. The Go specification does not explicitly require valid UTF-8, but only mention that
|
195
|
+
# it is implicitly valid for Go source code (which must be valid UTF-8).
|
196
|
+
return out, ins[end:]
|
197
|
+
|
198
|
+
elif quote in ('"', '\''):
|
199
|
+
# Handle quoted strings without any escape sequences.
|
200
|
+
if '\\' not in ins[:end] and '\n' not in ins[:end]:
|
201
|
+
valid = False
|
202
|
+
if quote == '"':
|
203
|
+
# valid = utf8.ValidString(ins[len('"'): end - len('"')])
|
204
|
+
valid = True
|
205
|
+
elif quote == '\'':
|
206
|
+
# r, n = utf8.DecodeRuneInString(ins[len("'"): end - len("'")])
|
207
|
+
# valid = len("'") + n + len("'") == end and (r != utf8.RuneError or n != 1)
|
208
|
+
valid = end == 3
|
209
|
+
if valid:
|
210
|
+
out = ins[:end]
|
211
|
+
if unescape:
|
212
|
+
out = out[1: end - 1] # exclude quotes
|
213
|
+
return out, ins[end:]
|
214
|
+
|
215
|
+
# Handle quoted strings with escape sequences.
|
216
|
+
buf = []
|
217
|
+
in0 = ins
|
218
|
+
ins = ins[1:] # skip starting quote
|
219
|
+
|
220
|
+
while ins and ins[0] != quote:
|
221
|
+
# Process the next character, rejecting any unescaped newline characters which are invalid.
|
222
|
+
r, multibyte, rem = unquote_char(ins, quote)
|
223
|
+
if ins[0] == '\n':
|
224
|
+
raise UnquoteError
|
225
|
+
ins = rem
|
226
|
+
|
227
|
+
# Append the character if unescaping the input.
|
228
|
+
if unescape:
|
229
|
+
# if r < utf8.RuneSelf or not multibyte:
|
230
|
+
# buf.append(byte(r))
|
231
|
+
# else:
|
232
|
+
buf.append(r)
|
233
|
+
|
234
|
+
# Single quoted strings must be a single character.
|
235
|
+
if quote == '\'':
|
236
|
+
break
|
237
|
+
|
238
|
+
# Verify that the string ends with a terminating quote.
|
239
|
+
if not (ins and ins[0] == quote):
|
240
|
+
raise UnquoteError
|
241
|
+
|
242
|
+
ins = ins[1:] # skip terminating quote
|
243
|
+
|
244
|
+
if unescape:
|
245
|
+
return ''.join(buf), ins
|
246
|
+
|
247
|
+
return in0[:len(in0) - len(ins)], ins
|
248
|
+
|
249
|
+
else:
|
250
|
+
raise UnquoteError
|
251
|
+
|
252
|
+
|
253
|
+
def unquote(s: str) -> str:
|
254
|
+
# Unquote interprets s as a single-quoted, double-quoted, or backquoted Go string literal, returning the string
|
255
|
+
# value that s quotes. (If s is single-quoted, it would be a Go character literal; Unquote returns the
|
256
|
+
# corresponding one-character string.)
|
257
|
+
out, rem = unquote_(s, True)
|
258
|
+
if rem:
|
259
|
+
raise UnquoteError
|
260
|
+
return out
|
@@ -1,5 +1,5 @@
|
|
1
1
|
omlish/.manifests.json,sha256=x26AIwDzScUvnX-p4xlq6Zc5QYrAo0Vmgf1qHc1KL_M,8253
|
2
|
-
omlish/__about__.py,sha256=
|
2
|
+
omlish/__about__.py,sha256=irtXLzobfvt8KMSteKtCL_pI7wHzOQYda3aaJQXQZB8,3380
|
3
3
|
omlish/__init__.py,sha256=SsyiITTuK0v74XpKV8dqNaCmjOlan1JZKrHQv5rWKPA,253
|
4
4
|
omlish/c3.py,sha256=ubu7lHwss5V4UznbejAI0qXhXahrU01MysuHOZI9C4U,8116
|
5
5
|
omlish/cached.py,sha256=MLap_p0rdGoDIMVhXVHm1tsbcWobJF0OanoodV03Ju8,542
|
@@ -9,10 +9,9 @@ omlish/defs.py,sha256=9uUjJuVIbCBL3g14fyzAp-9gH935MFofvlfOGwcBIaM,4913
|
|
9
9
|
omlish/dynamic.py,sha256=xQ8LlOt_fUPApg-yz7-gNq8JdVgTqJ0_R6vhJq2WbpI,6522
|
10
10
|
omlish/libc.py,sha256=8K4c66YV1ziJerl5poAAYCmsV-VSsHkT3EHhPW04ufg,15639
|
11
11
|
omlish/metadata.py,sha256=q8UG-fpcXhEF7BZnhVikIE_IHyud9-8YT8iv646zU2s,3589
|
12
|
-
omlish/outcome.py,sha256=ABIE0zjjTyTNtn-ZqQ_9_mUzLiBQ3sDAyqc9JVD8N2k,7852
|
13
12
|
omlish/runmodule.py,sha256=PWvuAaJ9wQQn6bx9ftEL3_d04DyotNn8dR_twm2pgw0,700
|
14
13
|
omlish/shlex.py,sha256=bsW2XUD8GiMTUTDefJejZ5AyqT1pTgWMPD0BMoF02jE,248
|
15
|
-
omlish/sync.py,sha256
|
14
|
+
omlish/sync.py,sha256=-2gVJZFl8hvp7jvrnX8GcZVOecqAym6AcyK1QtMR9Ic,2979
|
16
15
|
omlish/_antlr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
16
|
omlish/algorithm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
17
|
omlish/algorithm/all.py,sha256=FudUHwoaRLNNmqYM3jhP2Yd2BpmYhNBRPaVZzARMoSc,194
|
@@ -92,12 +91,18 @@ omlish/argparse/all.py,sha256=NeeMM5MIebY7XDAHaCxUzeesEoUYwsf5i9PrBUcO1cI,1057
|
|
92
91
|
omlish/argparse/cli.py,sha256=vVLlhJPt0PKaNfIBrXTzz9cHyy2dFEY8hlQ3GvtKbwc,8704
|
93
92
|
omlish/asyncs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
94
93
|
omlish/asyncs/all.py,sha256=uUz9ziKh4_QrgmdhKFMgq6j7mFbiZd3LiogguDCQsGI,587
|
95
|
-
omlish/asyncs/anyio.py,sha256=gfpx-D8QGmUfhnQxHEaHXcAP8zSMQjcGw4COFTGNnHI,8021
|
96
94
|
omlish/asyncs/asyncs.py,sha256=x72xDJenumWV5a_myJOdWlaTdBNZPCwJ_u7_6yhZyBk,2034
|
97
95
|
omlish/asyncs/bridge.py,sha256=zVAhbFVDvw3qJjcvOKKY2mI8AwrmcmddKsW9KIzPdLI,9740
|
98
96
|
omlish/asyncs/flavors.py,sha256=1mNxGNRVmjUHzA13K5ht8vdJv4CLEmzYTQ6BZXr1520,4866
|
99
97
|
omlish/asyncs/trio.py,sha256=fmZ5b_lKdVV8NQ3euCUutWgnkqTFzSnOjvJSA_jvmrE,367
|
100
98
|
omlish/asyncs/trio_asyncio.py,sha256=oqdOHy0slj9PjVxaDf3gJkq9AAgg7wYZbB469jOftVw,1327
|
99
|
+
omlish/asyncs/anyio/__init__.py,sha256=sX7bciyRquaPeDAz16phkg_Lnw_AbJgUkayy5Aw8o2M,1695
|
100
|
+
omlish/asyncs/anyio/backends.py,sha256=jJIymWoiedaEJJm82gvKiJ41EWLQZ-bcyNHpbDpKKi4,1584
|
101
|
+
omlish/asyncs/anyio/futures.py,sha256=Nm1gLerZEnHk-rlsmr0UfK168IWIK6zA8EebZFtoY_E,2052
|
102
|
+
omlish/asyncs/anyio/signals.py,sha256=ySSut5prdnoy0-5Ws5V1M4cC2ON_vY550vU10d2NHk8,893
|
103
|
+
omlish/asyncs/anyio/streams.py,sha256=gNRAcHR0L8OtNioqKFbq0Z_apYAWKHFipZ2MUBp8Vg0,2228
|
104
|
+
omlish/asyncs/anyio/sync.py,sha256=maggE0mH-TxmefX3vfa27DuDEaE5-yQKn84Mj3mOSVU,1569
|
105
|
+
omlish/asyncs/anyio/utils.py,sha256=BRThj9AVV1CAe4tkSYXQvNBHqJRbEpP4utzu-AImk08,1086
|
101
106
|
omlish/asyncs/asyncio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
107
|
omlish/asyncs/asyncio/all.py,sha256=EksCHjRQKobiGrxuDW72IaH53WJMs7rdj_ZDBI3iKcg,315
|
103
108
|
omlish/asyncs/asyncio/asyncio.py,sha256=mDjYNm1cylUhQ8slWXwdPoXasuWfafjzu78GHt2Mdig,2437
|
@@ -401,7 +406,7 @@ omlish/iterators/iterators.py,sha256=iTQQwBE6Wzoy36dnbPIws17zbjE3zNN4KwVw4Fzh-gY
|
|
401
406
|
omlish/iterators/recipes.py,sha256=53mkexitMhkwXQZbL6DrhpT0WePQ_56uXd5Jaw3DfzI,467
|
402
407
|
omlish/iterators/tools.py,sha256=Pi4ybXytUXVZ3xwK89xpPImQfYYId9p1vIFQvVqVLqA,2551
|
403
408
|
omlish/iterators/unique.py,sha256=0jAX3kwzVfRNhe0Tmh7kVP_Q2WBIn8POo_O-rgFV0rQ,1390
|
404
|
-
omlish/lang/__init__.py,sha256=
|
409
|
+
omlish/lang/__init__.py,sha256=ovWbqkbQJNefmYR3VR_NwsRyEOguh62Rw6bimwcTaRI,5057
|
405
410
|
omlish/lang/attrs.py,sha256=fofCKN0X8TMu1yGqHpLpNLih9r9HWl3D3Vn3b6O791w,3891
|
406
411
|
omlish/lang/clsdct.py,sha256=sJYadm-fwzti-gsi98knR5qQUxriBmOqQE_qz3RopNk,1743
|
407
412
|
omlish/lang/cmp.py,sha256=5vbzWWbqdzDmNKAGL19z6ZfUKe5Ci49e-Oegf9f4BsE,1346
|
@@ -416,6 +421,7 @@ omlish/lang/imports.py,sha256=Gdl6xCF89xiMOE1yDmdvKWamLq8HX-XPianO58Jdpmw,9218
|
|
416
421
|
omlish/lang/iterables.py,sha256=HOjcxOwyI5bBApDLsxRAGGhTTmw7fdZl2kEckxRVl-0,1994
|
417
422
|
omlish/lang/maybes.py,sha256=dAgrUoAhCgyrHRqa73CkaGnpXwGc-o9n-NIThrNXnbU,3416
|
418
423
|
omlish/lang/objects.py,sha256=ih3z47DysrW11Vf3vF8rdALsnhK19Afp6wTU8AHAPWM,4982
|
424
|
+
omlish/lang/outcomes.py,sha256=mpFy_VoM-b74L1aCFsjsZVUHx_icZ1AHMOKeVesjOp4,8628
|
419
425
|
omlish/lang/params.py,sha256=QmNVBfJsfxjDG5ilDPgHV7sK4UwRztkSQdLTo0umb8I,6648
|
420
426
|
omlish/lang/resolving.py,sha256=OuN2mDTPNyBUbcrswtvFKtj4xgH4H4WglgqSKv3MTy0,1606
|
421
427
|
omlish/lang/resources.py,sha256=WKkAddC3ctMK1bvGw-elGe8ZxAj2IaUTKVSu2nfgHTo,2839
|
@@ -612,10 +618,10 @@ omlish/specs/jmespath/lexer.py,sha256=hlPGCXPzGhd9ySj-z2cGTbyC9z3e0Io78IMYJZSEwN
|
|
612
618
|
omlish/specs/jmespath/parser.py,sha256=IPJ0fCv1Aj2MhsDx5XuddtM2LnnLrynuGs4g7PYCmf0,24453
|
613
619
|
omlish/specs/jmespath/scope.py,sha256=UyDsl9rv_c8DCjJBuVIA2ESu1jrgYvuwEKiaJDQKnT0,1590
|
614
620
|
omlish/specs/jmespath/visitor.py,sha256=yneRMO4qf3k2Mdcm2cPC0ozRgOaudzlxRVRGatztJzs,16569
|
615
|
-
omlish/specs/jsonrpc/__init__.py,sha256=
|
621
|
+
omlish/specs/jsonrpc/__init__.py,sha256=QQwr-jkgvwr1ZMlNwl5W1TuHcxx8RuzQVFwWwNhp5sM,515
|
616
622
|
omlish/specs/jsonrpc/errors.py,sha256=-Zgmlo6bV6J8w5f8h9axQgLquIFBHDgIwcpufEH5NsE,707
|
617
623
|
omlish/specs/jsonrpc/marshal.py,sha256=hM1rPZddoha_87qcQtBWkyaZshCXlPoHPJg6J_nBi9k,1915
|
618
|
-
omlish/specs/jsonrpc/types.py,sha256=
|
624
|
+
omlish/specs/jsonrpc/types.py,sha256=Hf6GQHJhqdSUXE0kWw67HhSH_Fu2fuOeS-MYTgEbXwA,2753
|
619
625
|
omlish/specs/jsonschema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
620
626
|
omlish/specs/jsonschema/types.py,sha256=qoxExgKfrI-UZXdk3qcVZIEyp1WckFbb85_eGInEoAY,467
|
621
627
|
omlish/specs/jsonschema/keywords/__init__.py,sha256=kZNJCujSpflCOrPNeJT8C1a5sfStn6cwiXXzbu9YPyg,753
|
@@ -736,7 +742,7 @@ omlish/testing/pytest/plugins/switches.py,sha256=U8tDP-WSI2yjxwp4hocgZNJEmEv8UO8
|
|
736
742
|
omlish/testing/pytest/plugins/utils.py,sha256=L5C622UXcA_AUKDcvyh5IMiRfqSGGz0McdhwZWvfMlU,261
|
737
743
|
omlish/testing/pytest/plugins/asyncs/__init__.py,sha256=TTNhFmP_krug1973sq_bpWBTIvg68-1nbuVLSs92Z6k,41
|
738
744
|
omlish/testing/pytest/plugins/asyncs/consts.py,sha256=0NOCkzV43dOu3u97BqYMQ4mPG8JuFncpWibkOZpCqX4,55
|
739
|
-
omlish/testing/pytest/plugins/asyncs/fixtures.py,sha256=
|
745
|
+
omlish/testing/pytest/plugins/asyncs/fixtures.py,sha256=O0gT4jVH-4t1WYpY2j51QgsbdK8LKt4R9hOxnf74eTg,11264
|
740
746
|
omlish/testing/pytest/plugins/asyncs/plugin.py,sha256=-gVLHZb78nEfMOnmWKY0gdT3BOHjY3bp-GnBGshOvPo,6021
|
741
747
|
omlish/testing/pytest/plugins/asyncs/utils.py,sha256=K-nQxSJQL-3N_xtLqfCX11KSLYCG_gPQ6hZqLQZIHNQ,294
|
742
748
|
omlish/testing/pytest/plugins/asyncs/backends/__init__.py,sha256=DpJGt5KA2N2pNXy59raVyJH1969M1AP80pJAqIlNEAs,359
|
@@ -756,9 +762,11 @@ omlish/text/mangle.py,sha256=kfzFLfvepH-chl1P89_mdc5vC4FSqyPA2aVtgzuB8IY,1133
|
|
756
762
|
omlish/text/minja.py,sha256=jZC-fp3Xuhx48ppqsf2Sf1pHbC0t8XBB7UpUUoOk2Qw,5751
|
757
763
|
omlish/text/parts.py,sha256=Q9NvoyEGQKIWgiPD4D_Qc66cWAuyEKE033dT9m7c3Wk,6662
|
758
764
|
omlish/text/random.py,sha256=jNWpqiaKjKyTdMXC-pWAsSC10AAP-cmRRPVhm59ZWLk,194
|
759
|
-
omlish
|
760
|
-
omlish
|
761
|
-
omlish-0.0.0.
|
762
|
-
omlish-0.0.0.
|
763
|
-
omlish-0.0.0.
|
764
|
-
omlish-0.0.0.
|
765
|
+
omlish/text/go/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
766
|
+
omlish/text/go/quoting.py,sha256=N9EYdnFdEX_A8fOviH-1w4jwV3XOQ7VU2WsoUNubYVY,9137
|
767
|
+
omlish-0.0.0.dev257.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
768
|
+
omlish-0.0.0.dev257.dist-info/METADATA,sha256=SCBiML7sTPFB9bgHA3gYkm7D8wlrNpOjJZQFCf_s_Zk,4176
|
769
|
+
omlish-0.0.0.dev257.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
|
770
|
+
omlish-0.0.0.dev257.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
|
771
|
+
omlish-0.0.0.dev257.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
|
772
|
+
omlish-0.0.0.dev257.dist-info/RECORD,,
|