omlish 0.0.0.dev437__py3-none-any.whl → 0.0.0.dev439__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.
Files changed (102) hide show
  1. omlish/__about__.py +2 -2
  2. omlish/dataclasses/impl/api/classes/make.py +1 -1
  3. omlish/dataclasses/tools/static.py +1 -1
  4. omlish/formats/json/stream/__init__.py +5 -3
  5. omlish/formats/json/stream/building.py +2 -2
  6. omlish/formats/json/stream/lexing.py +187 -42
  7. omlish/formats/json/stream/parsing.py +31 -9
  8. omlish/formats/json/stream/rendering.py +6 -6
  9. omlish/formats/json/stream/utils.py +106 -33
  10. omlish/formats/json5/literals.py +7 -4
  11. omlish/formats/json5/parsing.py +33 -79
  12. omlish/formats/json5/stream.py +45 -50
  13. omlish/http/all.py +59 -53
  14. omlish/inject/__init__.py +1 -0
  15. omlish/iterators/__init__.py +2 -0
  16. omlish/iterators/transforms.py +204 -0
  17. omlish/lang/classes/bindable.py +1 -1
  18. omlish/lang/classes/restrict.py +8 -0
  19. omlish/lite/inject.py +1 -0
  20. omlish/lite/marshal.py +1 -0
  21. omlish/reflect/types.py +2 -2
  22. omlish/sql/queries/_marshal.py +1 -1
  23. {omlish-0.0.0.dev437.dist-info → omlish-0.0.0.dev439.dist-info}/METADATA +2 -2
  24. {omlish-0.0.0.dev437.dist-info → omlish-0.0.0.dev439.dist-info}/RECORD +28 -101
  25. omlish/formats/json5/Json5.g4 +0 -168
  26. omlish/formats/json5/_antlr/Json5Lexer.py +0 -354
  27. omlish/formats/json5/_antlr/Json5Listener.py +0 -79
  28. omlish/formats/json5/_antlr/Json5Parser.py +0 -617
  29. omlish/formats/json5/_antlr/Json5Visitor.py +0 -52
  30. omlish/formats/json5/_antlr/__init__.py +0 -0
  31. omlish/text/antlr/__init__.py +0 -3
  32. omlish/text/antlr/_runtime/BufferedTokenStream.py +0 -305
  33. omlish/text/antlr/_runtime/CommonTokenFactory.py +0 -64
  34. omlish/text/antlr/_runtime/CommonTokenStream.py +0 -90
  35. omlish/text/antlr/_runtime/FileStream.py +0 -30
  36. omlish/text/antlr/_runtime/InputStream.py +0 -90
  37. omlish/text/antlr/_runtime/IntervalSet.py +0 -183
  38. omlish/text/antlr/_runtime/LICENSE.txt +0 -28
  39. omlish/text/antlr/_runtime/LL1Analyzer.py +0 -176
  40. omlish/text/antlr/_runtime/Lexer.py +0 -332
  41. omlish/text/antlr/_runtime/ListTokenSource.py +0 -147
  42. omlish/text/antlr/_runtime/Parser.py +0 -583
  43. omlish/text/antlr/_runtime/ParserInterpreter.py +0 -173
  44. omlish/text/antlr/_runtime/ParserRuleContext.py +0 -189
  45. omlish/text/antlr/_runtime/PredictionContext.py +0 -632
  46. omlish/text/antlr/_runtime/Recognizer.py +0 -150
  47. omlish/text/antlr/_runtime/RuleContext.py +0 -230
  48. omlish/text/antlr/_runtime/StdinStream.py +0 -14
  49. omlish/text/antlr/_runtime/Token.py +0 -158
  50. omlish/text/antlr/_runtime/TokenStreamRewriter.py +0 -258
  51. omlish/text/antlr/_runtime/Utils.py +0 -36
  52. omlish/text/antlr/_runtime/__init__.py +0 -2
  53. omlish/text/antlr/_runtime/_all.py +0 -24
  54. omlish/text/antlr/_runtime/_pygrun.py +0 -174
  55. omlish/text/antlr/_runtime/atn/ATN.py +0 -135
  56. omlish/text/antlr/_runtime/atn/ATNConfig.py +0 -162
  57. omlish/text/antlr/_runtime/atn/ATNConfigSet.py +0 -215
  58. omlish/text/antlr/_runtime/atn/ATNDeserializationOptions.py +0 -27
  59. omlish/text/antlr/_runtime/atn/ATNDeserializer.py +0 -449
  60. omlish/text/antlr/_runtime/atn/ATNSimulator.py +0 -50
  61. omlish/text/antlr/_runtime/atn/ATNState.py +0 -267
  62. omlish/text/antlr/_runtime/atn/ATNType.py +0 -20
  63. omlish/text/antlr/_runtime/atn/LexerATNSimulator.py +0 -573
  64. omlish/text/antlr/_runtime/atn/LexerAction.py +0 -301
  65. omlish/text/antlr/_runtime/atn/LexerActionExecutor.py +0 -146
  66. omlish/text/antlr/_runtime/atn/ParserATNSimulator.py +0 -1664
  67. omlish/text/antlr/_runtime/atn/PredictionMode.py +0 -502
  68. omlish/text/antlr/_runtime/atn/SemanticContext.py +0 -333
  69. omlish/text/antlr/_runtime/atn/Transition.py +0 -271
  70. omlish/text/antlr/_runtime/atn/__init__.py +0 -4
  71. omlish/text/antlr/_runtime/dfa/DFA.py +0 -136
  72. omlish/text/antlr/_runtime/dfa/DFASerializer.py +0 -76
  73. omlish/text/antlr/_runtime/dfa/DFAState.py +0 -129
  74. omlish/text/antlr/_runtime/dfa/__init__.py +0 -4
  75. omlish/text/antlr/_runtime/error/DiagnosticErrorListener.py +0 -111
  76. omlish/text/antlr/_runtime/error/ErrorListener.py +0 -75
  77. omlish/text/antlr/_runtime/error/ErrorStrategy.py +0 -712
  78. omlish/text/antlr/_runtime/error/Errors.py +0 -176
  79. omlish/text/antlr/_runtime/error/__init__.py +0 -4
  80. omlish/text/antlr/_runtime/tree/Chunk.py +0 -33
  81. omlish/text/antlr/_runtime/tree/ParseTreeMatch.py +0 -121
  82. omlish/text/antlr/_runtime/tree/ParseTreePattern.py +0 -75
  83. omlish/text/antlr/_runtime/tree/ParseTreePatternMatcher.py +0 -377
  84. omlish/text/antlr/_runtime/tree/RuleTagToken.py +0 -53
  85. omlish/text/antlr/_runtime/tree/TokenTagToken.py +0 -50
  86. omlish/text/antlr/_runtime/tree/Tree.py +0 -194
  87. omlish/text/antlr/_runtime/tree/Trees.py +0 -114
  88. omlish/text/antlr/_runtime/tree/__init__.py +0 -2
  89. omlish/text/antlr/_runtime/xpath/XPath.py +0 -278
  90. omlish/text/antlr/_runtime/xpath/XPathLexer.py +0 -98
  91. omlish/text/antlr/_runtime/xpath/__init__.py +0 -4
  92. omlish/text/antlr/delimit.py +0 -109
  93. omlish/text/antlr/dot.py +0 -41
  94. omlish/text/antlr/errors.py +0 -14
  95. omlish/text/antlr/input.py +0 -96
  96. omlish/text/antlr/parsing.py +0 -54
  97. omlish/text/antlr/runtime.py +0 -102
  98. omlish/text/antlr/utils.py +0 -38
  99. {omlish-0.0.0.dev437.dist-info → omlish-0.0.0.dev439.dist-info}/WHEEL +0 -0
  100. {omlish-0.0.0.dev437.dist-info → omlish-0.0.0.dev439.dist-info}/entry_points.txt +0 -0
  101. {omlish-0.0.0.dev437.dist-info → omlish-0.0.0.dev439.dist-info}/licenses/LICENSE +0 -0
  102. {omlish-0.0.0.dev437.dist-info → omlish-0.0.0.dev439.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,204 @@
1
+ import abc
2
+ import dataclasses as dc
3
+ import itertools
4
+ import typing as ta
5
+
6
+ from .. import lang
7
+
8
+
9
+ T = ta.TypeVar('T')
10
+ U = ta.TypeVar('U')
11
+
12
+ Transform: ta.TypeAlias = ta.Callable[[ta.Iterable[T]], ta.Iterable[U]]
13
+
14
+ X0 = ta.TypeVar('X0')
15
+ X1 = ta.TypeVar('X1')
16
+ X2 = ta.TypeVar('X2')
17
+ X3 = ta.TypeVar('X3')
18
+ X4 = ta.TypeVar('X4')
19
+ X5 = ta.TypeVar('X5')
20
+
21
+
22
+ ##
23
+
24
+
25
+ _filter = filter
26
+ _map = map
27
+ _zip = zip
28
+
29
+
30
+ ##
31
+
32
+
33
+ class Transform_(lang.Abstract, ta.Generic[T, U]): # noqa
34
+ @abc.abstractmethod
35
+ def __call__(self, it: ta.Iterable[T]) -> ta.Iterable[U]:
36
+ raise NotImplementedError
37
+
38
+
39
+ ##
40
+
41
+
42
+ @dc.dataclass(frozen=True)
43
+ class Filter(Transform_[T, T]):
44
+ fn: ta.Callable[[T], bool] | None
45
+
46
+ def __call__(self, it: ta.Iterable[T]) -> ta.Iterable[T]:
47
+ return _filter(self.fn, it)
48
+
49
+
50
+ filter = Filter # noqa
51
+
52
+
53
+ ##
54
+
55
+
56
+ @dc.dataclass(frozen=True)
57
+ class Map(Transform_[T, U]):
58
+ fn: ta.Callable[[T], U]
59
+
60
+ def __call__(self, it: ta.Iterable[T]) -> ta.Iterable[U]:
61
+ return _map(self.fn, it)
62
+
63
+
64
+ map = Map # noqa
65
+
66
+
67
+ ##
68
+
69
+
70
+ @dc.dataclass(frozen=True)
71
+ class Apply(Transform_[T, T]):
72
+ fn: ta.Callable[[T], ta.Any]
73
+
74
+ def __call__(self, it: ta.Iterable[T]) -> ta.Iterable[T]:
75
+ return _map(lambda e: (self.fn(e), e)[1], it)
76
+
77
+
78
+ apply = Apply
79
+
80
+
81
+ ##
82
+
83
+
84
+ @dc.dataclass(frozen=True)
85
+ class Flatten(Transform_[ta.Iterable[T], T]):
86
+ def __call__(self, it: ta.Iterable[ta.Iterable[T]]) -> ta.Iterable[U]:
87
+ return itertools.chain.from_iterable(it) # type: ignore[arg-type]
88
+
89
+
90
+ flatten = Flatten
91
+
92
+
93
+ ##
94
+
95
+
96
+ @dc.dataclass(frozen=True)
97
+ class FlatMap(Transform_[T, U]):
98
+ fn: ta.Callable[[T], ta.Iterable[U]]
99
+
100
+ def __call__(self, it: ta.Iterable[T]) -> ta.Iterable[U]:
101
+ return itertools.chain.from_iterable(_map(self.fn, it))
102
+
103
+
104
+ flat_map = FlatMap
105
+
106
+ # Alternatively:
107
+ # def flat_map(fn: ta.Callable[[T], ta.Iterable[U]]) -> Transform[T, U]:
108
+ # return compose(map(fn), flatten())
109
+
110
+
111
+ ##
112
+
113
+
114
+ @dc.dataclass(frozen=True)
115
+ class Compose(Transform_[T, U]):
116
+ tfs: ta.Sequence[Transform]
117
+
118
+ def __call__(self, it: ta.Iterable[T]) -> ta.Iterable[U]:
119
+ for tf in self.tfs:
120
+ it = tf(it)
121
+ return it # type: ignore[return-value]
122
+
123
+
124
+ @ta.overload
125
+ def compose(
126
+ tf0: Transform[T, U],
127
+ ) -> Transform[T, U]:
128
+ ...
129
+
130
+
131
+ @ta.overload
132
+ def compose(
133
+ tf0: Transform[T, X0],
134
+ tf1: Transform[X0, U],
135
+ ) -> Transform[T, U]:
136
+ ...
137
+
138
+
139
+ @ta.overload
140
+ def compose(
141
+ tf0: Transform[T, X0],
142
+ tf1: Transform[X0, X1],
143
+ tf2: Transform[X1, U],
144
+ ) -> Transform[T, U]:
145
+ ...
146
+
147
+
148
+ @ta.overload
149
+ def compose(
150
+ tf0: Transform[T, X0],
151
+ tf1: Transform[X0, X1],
152
+ tf2: Transform[X1, X2],
153
+ tf3: Transform[X2, U],
154
+ ) -> Transform[T, U]:
155
+ ...
156
+
157
+
158
+ @ta.overload
159
+ def compose(
160
+ tf0: Transform[T, X0],
161
+ tf1: Transform[X0, X1],
162
+ tf2: Transform[X1, X2],
163
+ tf3: Transform[X2, X3],
164
+ tf4: Transform[X3, U],
165
+ ) -> Transform[T, U]:
166
+ ...
167
+
168
+
169
+ @ta.overload
170
+ def compose(
171
+ tf0: Transform[T, X0],
172
+ tf1: Transform[X0, X1],
173
+ tf2: Transform[X1, X2],
174
+ tf3: Transform[X2, X3],
175
+ tf4: Transform[X3, X4],
176
+ tf5: Transform[X4, U],
177
+ ) -> Transform[T, U]:
178
+ ...
179
+
180
+
181
+ @ta.overload
182
+ def compose(
183
+ tf0: Transform[T, X0],
184
+ tf1: Transform[X0, X1],
185
+ tf2: Transform[X1, X2],
186
+ tf3: Transform[X2, X3],
187
+ tf4: Transform[X3, X4],
188
+ tf5: Transform[X4, X5],
189
+ tf6: Transform[X5, U],
190
+ ) -> Transform[T, U]:
191
+ ...
192
+
193
+
194
+ @ta.overload
195
+ def compose(
196
+ *tf: Transform,
197
+ ) -> Transform:
198
+ ...
199
+
200
+
201
+ def compose(tf0, *tfn):
202
+ if not tfn:
203
+ return tf0
204
+ return Compose([tf0, *tfn])
@@ -19,7 +19,7 @@ class _ClassOrInstanceMethod:
19
19
 
20
20
  class BindableClass(ta.Generic[T]):
21
21
  # FIXME: apparently can't have TypeVars in ClassVars, but could stick in a @classmethod (which gets transformed)...
22
- _bound: ta.ClassVar[type[T] | None] = None # type: ignore[misc]
22
+ _bound: ta.ClassVar[type[T] | None] = None
23
23
 
24
24
  def __init__(self, *, _bound):
25
25
  super().__init__()
@@ -32,6 +32,14 @@ class Final(Abstract):
32
32
  elif Final in base.__mro__:
33
33
  raise FinalTypeError(base)
34
34
 
35
+ # Per `ta.final`:
36
+ try:
37
+ cls.__final__ = True # type: ignore[attr-defined]
38
+ except (AttributeError, TypeError):
39
+ # Skip the attribute silently if it is not writable. AttributeError happens if the object has __slots__ or
40
+ # a read-only property, TypeError if it's a builtin class.
41
+ pass
42
+
35
43
 
36
44
  ##
37
45
 
omlish/lite/inject.py CHANGED
@@ -1,4 +1,5 @@
1
1
  # ruff: noqa: UP006 UP007 UP043 UP045
2
+ # @omlish-amalg ../../omdev/scripts/inject.py
2
3
  import abc
3
4
  import contextlib
4
5
  import contextvars
omlish/lite/marshal.py CHANGED
@@ -1,4 +1,5 @@
1
1
  # ruff: noqa: UP006 UP007 UP045
2
+ # @omlish-amalg ../../omdev/scripts/marshal.py
2
3
  """
3
4
  TODO:
4
5
  - pickle stdlib objs? have to pin to 3.8 pickle protocol, will be cross-version
omlish/reflect/types.py CHANGED
@@ -225,7 +225,7 @@ def is_simple_generic_alias_type(oty: type) -> bool:
225
225
 
226
226
  def get_params(obj: ta.Any) -> tuple[ta.TypeVar, ...]:
227
227
  if isinstance(obj, type):
228
- if issubclass(obj, ta.Generic): # type: ignore
228
+ if issubclass(obj, ta.Generic):
229
229
  return obj.__dict__.get('__parameters__', ()) # noqa
230
230
 
231
231
  if (ks := _KNOWN_SPECIALS.get_by_origin(obj)) is not None:
@@ -591,7 +591,7 @@ class Reflector:
591
591
  obj,
592
592
  )
593
593
 
594
- if issubclass(obj, ta.Generic): # type: ignore
594
+ if issubclass(obj, ta.Generic):
595
595
  params = get_params(obj)
596
596
  if params:
597
597
  return Generic(
@@ -40,7 +40,7 @@ class OpMarshalerUnmarshaler(msh.Marshaler, msh.Unmarshaler):
40
40
  return col.make_map(((o.name, o) for _, o in self.ns), strict=True)
41
41
 
42
42
  def marshal(self, ctx: msh.MarshalContext, o: ta.Any) -> msh.Value:
43
- return check.isinstance(o, self.ty).name # type: ignore # noqa
43
+ return check.isinstance(o, self.ty).name
44
44
 
45
45
  def unmarshal(self, ctx: msh.UnmarshalContext, v: msh.Value) -> ta.Any:
46
46
  return self.by_name[check.isinstance(v, str)]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omlish
3
- Version: 0.0.0.dev437
3
+ Version: 0.0.0.dev439
4
4
  Summary: omlish
5
5
  Author: wrmsr
6
6
  License-Expression: BSD-3-Clause
@@ -150,7 +150,7 @@ dependencies of any kind**.
150
150
  - **[identity](https://github.com/wrmsr/omlish/blob/master/omlish/collections/identity.py)** - Identity-keyed
151
151
  collections.
152
152
  - **[sorted](https://github.com/wrmsr/omlish/blob/master/omlish/collections/sorted)** - Interfaces for value-sorted
153
- collections and key-sorted mappings, and a simple but - correct skiplist-backed implementation.
153
+ collections and key-sorted mappings, and a simple but correct skiplist-backed implementation.
154
154
  - **[persistent](https://github.com/wrmsr/omlish/blob/master/omlish/collections/persistent)** - Interfaces for
155
155
  [persistent](https://en.wikipedia.org/wiki/Persistent_data_structure) maps, and a simple but correct treap-backed
156
156
  implementation.
@@ -1,5 +1,5 @@
1
1
  omlish/.omlish-manifests.json,sha256=FLw7xkPiSXuImZgqSP8BwrEib2R1doSzUPLUkc-QUIA,8410
2
- omlish/__about__.py,sha256=PkT-Y5AG9OGh2-3gygGqcUYqDp5dICnXCJzUbc9As6g,3575
2
+ omlish/__about__.py,sha256=dvgJrWD5N6Mjo6BacUkFRrr7AXjC5cDHEIJlldjLl-I,3575
3
3
  omlish/__init__.py,sha256=SsyiITTuK0v74XpKV8dqNaCmjOlan1JZKrHQv5rWKPA,253
4
4
  omlish/c3.py,sha256=ZNIMl1kwg3qdei4DiUrJPQe5M81S1e76N-GuNSwLBAE,8683
5
5
  omlish/cached.py,sha256=MLap_p0rdGoDIMVhXVHm1tsbcWobJF0OanoodV03Ju8,542
@@ -146,7 +146,7 @@ omlish/dataclasses/impl/api/__init__.py,sha256=k5iS9QOwf_f4iOfGffYhnqDOcmEIwEUUT
146
146
  omlish/dataclasses/impl/api/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
147
  omlish/dataclasses/impl/api/classes/conversion.py,sha256=T1I-aZKui2tv8rknuw9yCvGQLTrFnzTuHDFoezhE0ko,908
148
148
  omlish/dataclasses/impl/api/classes/decorator.py,sha256=LqkAjNFpUeLThnnkzt1tIYKtIf8maDCkjrZzSbABZbg,4067
149
- omlish/dataclasses/impl/api/classes/make.py,sha256=cRGPRfUQpW2YOHSDFE59-9qOzvWWrZ-4liq1T1U_1fg,5230
149
+ omlish/dataclasses/impl/api/classes/make.py,sha256=xcah0foeKtHa8r3H3Osr2xXBNpkIa_kImW0zfoECBVI,5214
150
150
  omlish/dataclasses/impl/api/classes/metadata.py,sha256=sMZgtoZaybfCoBKOVj7hKc-xqfU2Lca9WFrqg8UAAsE,2773
151
151
  omlish/dataclasses/impl/api/classes/params.py,sha256=cJAMxLHgW6xyKURlCnDQpA-TYfOgWpVBCavie-IZTOM,2000
152
152
  omlish/dataclasses/impl/api/fields/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -201,7 +201,7 @@ omlish/dataclasses/tools/modifiers.py,sha256=zSw7wmYtkKXY2UTDdbVJppIEAGqkrFHBGTv
201
201
  omlish/dataclasses/tools/only_.py,sha256=hPpqzr9YW09YmlX_QJNU2aePHYJEIrbGCPwmnvVS_to,849
202
202
  omlish/dataclasses/tools/replace.py,sha256=izM9lPT6AhEtjqn22auqaofa0j69KO7iootF-2Uj4cY,396
203
203
  omlish/dataclasses/tools/repr.py,sha256=KFvF6uv2YYIKq8O3ZNbEAS1tqRQALsJ-SUlBNPd5_GI,190
204
- omlish/dataclasses/tools/static.py,sha256=qbGcio3YgVkC02iZ6aRrOGj9Jwu5NIumX4VBWQbxgAE,8783
204
+ omlish/dataclasses/tools/static.py,sha256=byDnPc0W15s3YPQNC9oyCASKVNxCytrHGLvDky4RGNc,8753
205
205
  omlish/diag/__init__.py,sha256=c1q8vuapGH1YiYdU300FIJXMI1MOcnLNBZXr-zc8BXk,1181
206
206
  omlish/diag/asts.py,sha256=MWh9XAG3m9L10FIJCyoNT2aU4Eft6tun_x9K0riq6Dk,3332
207
207
  omlish/diag/debug.py,sha256=ClED7kKXeVMyKrjGIxcq14kXk9kvUJfytBQwK9y7c4Q,1637
@@ -273,26 +273,20 @@ omlish/formats/json/backends/jiter.py,sha256=8qv_XWGpcupPtVm6Z_egHio_iY1Kk8eqkvX
273
273
  omlish/formats/json/backends/orjson.py,sha256=X2jhKgUYYwaVuAppPQmfyncbOs2PJ7drqH5BioP-AYI,3831
274
274
  omlish/formats/json/backends/std.py,sha256=Hhiug5CkC1TXLFrE9rnMR2on7xP-RliSvfYA9ill_U0,3159
275
275
  omlish/formats/json/backends/ujson.py,sha256=U3iOlAURfiCdXbiNlXfIjDdtJDbDaLZsSuZriTUvbxs,2307
276
- omlish/formats/json/stream/__init__.py,sha256=LOQvJGUEqvm1exve1hnWoO3mlMadShaO2Cy7XjCiWbA,829
277
- omlish/formats/json/stream/building.py,sha256=dyrOms7Yskayi0-MG4e5-5ilN08HIekNEogJh5C4hhs,2549
276
+ omlish/formats/json/stream/__init__.py,sha256=LoYSkdUX3lkQ4g9JB_F6YOeexlOEporKW8bW8tv3YXg,859
277
+ omlish/formats/json/stream/building.py,sha256=QAQaTyXuw9vkfhvzWIh_DSlypD1-HgzO855Dgz3_wFM,2517
278
278
  omlish/formats/json/stream/errors.py,sha256=c8M8UAYmIZ-vWZLeKD2jMj4EDCJbr9QR8Jq_DyHjujQ,43
279
- omlish/formats/json/stream/lexing.py,sha256=E4j99qfCp2xIGk9CrwhPNVk0_ltLKvpw9G0K2xp1AAg,9396
280
- omlish/formats/json/stream/parsing.py,sha256=c7958eYT5-KO8VFIVGBM-MowuaJ6UNTt7l2tTlRKHek,6468
281
- omlish/formats/json/stream/rendering.py,sha256=U0MyVoYRDv7JLI8e7ItwmxyKnqYhKvfJY4-ZBQ5lHzA,3694
282
- omlish/formats/json/stream/utils.py,sha256=_lqksQtoIgWjQWY4r-V2liJ7Dkz5rRAUnzwWyzKe8jc,2950
283
- omlish/formats/json5/Json5.g4,sha256=2V3IB8W1R45mFax5Qy4laAwcHJ9oFPWHc-r8qy9-YE4,2381
279
+ omlish/formats/json/stream/lexing.py,sha256=GkEhuDqAgZTOJRkroP4F_U396XtMQVNMjEqXKiCCtnU,13605
280
+ omlish/formats/json/stream/parsing.py,sha256=bnTaYcCMRh0i_mByQgq4qtVf53zJnmjPvUDwJ7-zL64,7154
281
+ omlish/formats/json/stream/rendering.py,sha256=E5SXMGcbBtgtUYYznTPZFHD4tmV_X7K3MK50V11ESRk,3611
282
+ omlish/formats/json/stream/utils.py,sha256=vX69i90DVCjAAAohpiLgsT3ZinFS_cYUfneTvx-3dxU,4959
284
283
  omlish/formats/json5/__init__.py,sha256=3rwU5w5N_-dYME5kwMvXgexl-Vvo4BAmOg1N-I9Wf0M,194
285
284
  omlish/formats/json5/codec.py,sha256=mywk74R7F77z7xprQd19qoJZ8sNPUEkiBD9jNCKTh0c,1603
286
285
  omlish/formats/json5/errors.py,sha256=AHkR9ySjAoQdUrizpqgL8fg0M5oe5mHZkml3KZHEvC4,38
287
- omlish/formats/json5/literals.py,sha256=rj4-9KFXfgdq5oK_eUkp57cgoMQ8T0gRaG9ga430he4,2429
288
- omlish/formats/json5/parsing.py,sha256=_M-DrXHz4izZcMp4QPCafMIgK6pzySHmksKDIhKW4lQ,2789
286
+ omlish/formats/json5/literals.py,sha256=dwQD6OkRBmIOp6i4Ha7XWYAfiBfxvTPgqNSh-OOSaBc,2514
287
+ omlish/formats/json5/parsing.py,sha256=SASgRbAy1jTu2YKtAFD0ET6v50Ytj3hGO5dw7Ybo8_k,1069
289
288
  omlish/formats/json5/rendering.py,sha256=V1XdLzawd-0qu7dVNorxUMiT4LRd5GCS8876-lDLF-c,4583
290
- omlish/formats/json5/stream.py,sha256=QNVWgejaimNkFmOtYtjV9E71L6zBxW7QdvVL_IdMquI,2253
291
- omlish/formats/json5/_antlr/Json5Lexer.py,sha256=8sT04wjBTDpyHpLo6a5byREBwfNnFtLPZp7Wx3KfbkY,23259
292
- omlish/formats/json5/_antlr/Json5Listener.py,sha256=wIqOwp4r-cOHxy6sxQbNmlYczqh2C3-H-74o_hr7WrA,2117
293
- omlish/formats/json5/_antlr/Json5Parser.py,sha256=psacqZWRzPNEZq70XKpOnelZXHuXjkULq1r-owaPs6g,19699
294
- omlish/formats/json5/_antlr/Json5Visitor.py,sha256=fIp5GhQ2Sd-bKEBBcBd31FOoCLiV1SZYPRof0Az6v6k,1455
295
- omlish/formats/json5/_antlr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
+ omlish/formats/json5/stream.py,sha256=p__Fp4dstWLsmq3B10ik0QCGVycA4ScVtIhXwsSiRvQ,2269
296
290
  omlish/formats/toml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
291
  omlish/formats/toml/codec.py,sha256=5HFGWEPd9IFxPlRMRheX8FEDlRIzLe1moHEOj2_PFKU,342
298
292
  omlish/formats/toml/parser.py,sha256=aaZlEEPk0IQhfux_kjCY2K5mYYYDPNQ-4wWgZXskoAM,30675
@@ -313,7 +307,7 @@ omlish/graphs/dot/make.py,sha256=e-M1IEdh4kHEjJmBxpaEUPxvFLrm5uIXdGxjQZr2HRo,365
313
307
  omlish/graphs/dot/rendering.py,sha256=IOCEEOqlsRctoIgnz1I9v0ycHHDAr5zYubTXT7v_YwA,3634
314
308
  omlish/graphs/dot/utils.py,sha256=8cGKIdcM-w1q4ITUYyC0lnYwLqNWuH2OddmmbLxVgEo,806
315
309
  omlish/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
316
- omlish/http/all.py,sha256=4dSBbitsrQIadivSo2rBLg8dgdmC0efpboylGUZgKKo,829
310
+ omlish/http/all.py,sha256=cHS0KaBfFt6ImVbsOZyuqyMzoxEEYX6a9IJeU1bJ0_8,1091
317
311
  omlish/http/asgi.py,sha256=4r2Gw1ojwp2OVpwonof1p4GFRcseIJqPhpkQpLhM9Jw,3243
318
312
  omlish/http/consts.py,sha256=7BJ4D1MdIvqBcepkgCfBFHolgTwbOlqsOEiee_IjxOA,2289
319
313
  omlish/http/cookies.py,sha256=uuOYlHR6e2SC3GM41V0aozK10nef9tYg83Scqpn5-HM,6351
@@ -349,7 +343,7 @@ omlish/http/coro/server/fdio.py,sha256=qZE4g5y4XESsTObSKyVggI-yzig57gSGJb4Z0rcHv
349
343
  omlish/http/coro/server/server.py,sha256=1B98Jj8TeZpnLVA8W-VJDHIRfxeFx2EvVbEFyEq1n7o,18697
350
344
  omlish/http/coro/server/simple.py,sha256=j1RZ3niKrgGM2qFnjdYWn_eniZzay5j49Ca4L3u8vO4,3296
351
345
  omlish/http/coro/server/sockets.py,sha256=24gU6wpIZuzYWKQD8UsHyYfTZlbcUFvkqXq5KVgWpQo,2261
352
- omlish/inject/__init__.py,sha256=1s_2338tLi2VWKy8HijBSkAlkanVY1uZ8iZec8SOEws,2929
346
+ omlish/inject/__init__.py,sha256=8ik0yhn0LCdDr2UMACBeatENs76yprB8pDXUNllXRWg,2954
353
347
  omlish/inject/binder.py,sha256=_TNPGcqtaVqCLoxMx2LBVSvZWmAUs4JcxAqnCpy7PG0,5253
354
348
  omlish/inject/bindings.py,sha256=PlvOnUREjvc6F8nOJdzl1k9SAf80icRB4qWFqDop87M,536
355
349
  omlish/inject/eagers.py,sha256=JBY7PcjXt-Rg9scQ1ol9xpcoTLXkXC_Ie9uwTWdzUkA,340
@@ -414,10 +408,11 @@ omlish/io/fdio/handlers.py,sha256=fJDNZz_MBBMU5C1HClFOHi-G9bCzL1v8KiSswb0BvE4,14
414
408
  omlish/io/fdio/kqueue.py,sha256=xRxDPKcOw5_bMDS0buF5xi12WHok4reNnnaYTX4kkCk,3843
415
409
  omlish/io/fdio/manager.py,sha256=I4KDZGo8fkBe0LAhpN0rmP9KJHyXRynypcCYsTzEjS4,1261
416
410
  omlish/io/fdio/pollers.py,sha256=5buOA47raq2PRwDuQ9pNwsahX0rP7nBm30CMcleiL08,5553
417
- omlish/iterators/__init__.py,sha256=Q35IkvmooW1WX2SlCm5nVGydHUCBXvT-l4fXpMu_o3k,513
411
+ omlish/iterators/__init__.py,sha256=Gy1KT06UjxL53EpqaSBzxfMrmgt1soR8mnIGZootP_c,557
418
412
  omlish/iterators/iterators.py,sha256=RxW35yQ5ed8vBQ22IqpDXFx-i5JiLQdp7-pkMZXhJJ8,3159
419
413
  omlish/iterators/recipes.py,sha256=wOwOZg-zWG9Zc3wcAxJFSe2rtavVBYwZOfG09qYEx_4,472
420
414
  omlish/iterators/tools.py,sha256=M16LXrJhMdsz5ea2qH0vws30ZvhQuQSCVFSLpRf_gTg,2096
415
+ omlish/iterators/transforms.py,sha256=YHVdD9nBkS1k4kogi4Ba0UOTU_pKkuX9jGw1Tqj3UMw,3598
421
416
  omlish/iterators/unique.py,sha256=BSE-eanva8byFCJi09Nt2zzTsVr8LnTqY1PIInGYRs0,1396
422
417
  omlish/lang/__init__.py,sha256=HqVWUkrUArOsjGoWrL-Ck6Zz2U6kKpj2DzbpHed-k1o,10431
423
418
  omlish/lang/asyncs.py,sha256=LV_4I3-WbLY8-SUXYJvKlzfL-Hd5ASFOlyPi3uMJYJk,2266
@@ -452,10 +447,10 @@ omlish/lang/cached/function.py,sha256=epDPy9WyGc_VaKTrEQJ3dZun-NLsvdvbbNd7jbaUM2
452
447
  omlish/lang/cached/property.py,sha256=a4E8knrNk5LDcaW2M39RQH2Y8oqjvOm-Rps6jIJ_oeY,2780
453
448
  omlish/lang/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
454
449
  omlish/lang/classes/abstract.py,sha256=ALHIEL1ZFeXPkrxUlAm9pFH6KmWPSPXG5UIjn-k_kLs,1715
455
- omlish/lang/classes/bindable.py,sha256=gviEabI5gEx0Rpu4G0LDWaD4N_VO1WUeFs1_XEisoAE,1233
450
+ omlish/lang/classes/bindable.py,sha256=dyTqU1udGb9W5GNdztnRdgo7AU1VvVgghKIvkFoSKEQ,1211
456
451
  omlish/lang/classes/namespaces.py,sha256=RVecCT38W5h6rjf5fYBLvomyDwwFqPRWjhs40gaLHPE,3933
457
452
  omlish/lang/classes/protocols.py,sha256=T98ZsHLgzw8hPvvNluxoreevoF8fD4zs8SwcnTXkLuY,701
458
- omlish/lang/classes/restrict.py,sha256=CUyvLpMYiQwTjpzo5sdG_lQxdeEIq2z2xSVNrsI9KfA,4126
453
+ omlish/lang/classes/restrict.py,sha256=xHLIK20MQ_jJPQ7JVzMNhyN4Xc4eLBgrcxqDnTbeKBI,4480
459
454
  omlish/lang/classes/simple.py,sha256=3AJSs-plVg2flq4SC6I39LxP0nBaB241puv3D5YCP5I,2973
460
455
  omlish/lang/classes/virtual.py,sha256=J4y-uiv1RaP2rfFeptXqQ1a4MRek0TMlAFFraO_lzhs,3397
461
456
  omlish/lang/imports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -485,9 +480,9 @@ omlish/lite/configs.py,sha256=4-1uVxo-aNV7vMKa7PVNhM610eejG1WepB42-Dw2xQI,914
485
480
  omlish/lite/contextmanagers.py,sha256=usDzBoNqJi98AccVlwgZoMvoBXOe9wyx2MreZtWhJy4,5863
486
481
  omlish/lite/dataclasses.py,sha256=aRSCZz1jN_UI-CWJhN0SJeKxa-79vXNUZ6YOMgG31SE,3610
487
482
  omlish/lite/imports.py,sha256=GyEDKL-WuHtdOKIL-cc8aFd0-bHwZFDEjAB52ItabX0,1341
488
- omlish/lite/inject.py,sha256=3DB2IcAo1G8dau2tw_XkffQmKqQucY0XXWHebhD2TZs,29109
483
+ omlish/lite/inject.py,sha256=tF0aI6uSNdhwQXXnnev6wKBG3ENbuajT_kBQpaGmNNQ,29155
489
484
  omlish/lite/json.py,sha256=m0Ce9eqUZG23-H7-oOp8n1sf4fzno5vtK4AK_4Vc-Mg,706
490
- omlish/lite/marshal.py,sha256=J0VNr9_LjGLjxKW0wlZtIFnh_US7zwstCmtpe9Pk_D0,22969
485
+ omlish/lite/marshal.py,sha256=JE5siS7WG_kdEpxTsHVcjIHjJN89cU2y4WtJhS5vgFs,23016
491
486
  omlish/lite/maybes.py,sha256=NusCpK0FVqkIutw6_Wldn69G5VyKYhat7SegBIQmGpk,4412
492
487
  omlish/lite/maysync.py,sha256=NiltEfX_mc7jWgWZ9XAqkDzMlLVprTAZvXRObXJT_IE,14926
493
488
  omlish/lite/objects.py,sha256=HzN_4J6w6WDLKDrW8jSNUKgfAR5vUsB42rtSCu04oqQ,1921
@@ -632,7 +627,7 @@ omlish/reflect/__init__.py,sha256=omD3VLFQtYTwPxrTH6gLATQIax9sTGGKc-7ps96-q0g,12
632
627
  omlish/reflect/inspect.py,sha256=dUrVz8VfAdLVFtFpW416DxzVC17D80cvFb_g2Odzgq8,1823
633
628
  omlish/reflect/ops.py,sha256=4mGvFMw5D6XGbhDhdCqZ1dZsiqezUTenDv63FIDohpY,3029
634
629
  omlish/reflect/subst.py,sha256=_lfNS2m2UiJgqARQtmGLTGo7CrSm9OMvVzt6GWOEX6M,4590
635
- omlish/reflect/types.py,sha256=CalJ1gvu4eTsgL6Z4xM06pVamjRmJL8IgjPpZlI8l8U,16098
630
+ omlish/reflect/types.py,sha256=4Plo_1cHIk8-68lu8_c_SUEohy19exTNDsgvuVbOJ5A,16066
636
631
  omlish/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
637
632
  omlish/secrets/all.py,sha256=qBxUFIqxCExADL71taNH_W6FYT9QvOrdcaMeUUPO3aw,298
638
633
  omlish/secrets/crypto.py,sha256=q0Hca5oMwvh39r0hrupN_ewxhlllbdDgAgVoloYFmDg,3714
@@ -726,7 +721,7 @@ omlish/sql/api/queries.py,sha256=OVsVqNyXXJQVDPfV3GFE2gwnHyGEenS65rTQRTNGx1Y,735
726
721
  omlish/sql/api/resources.py,sha256=RcjnsNoyFWG0VR8YDijwuyZtnxlGQe8jiPQVl_inzIc,2266
727
722
  omlish/sql/api/rows.py,sha256=Jo3AA_6Wt7tlwLO6-rp0arzYFqZXSxPudGPkW2xCYgQ,1346
728
723
  omlish/sql/queries/__init__.py,sha256=qoikGQZuwDkOBwGKdUVov_Ur3I-mezSDLLdzqwRw6l8,1567
729
- omlish/sql/queries/_marshal.py,sha256=yVfN5VgYMYDaYTE6FZ8Sea7GrRobn40Hc8kogrfKmjE,3016
724
+ omlish/sql/queries/_marshal.py,sha256=PwfcCmf-qeKsiL61c_GjUID6flLCiDiltFndPBhQIAM,2992
730
725
  omlish/sql/queries/base.py,sha256=nsavenCsZgzpITSI1zGEAi95K3cRDfAxRgNJKJmYul0,3502
731
726
  omlish/sql/queries/binary.py,sha256=dcEzeEn104AMPuQ7QrJU2O-YCN3SUdxB5S4jaWKOUqY,2253
732
727
  omlish/sql/queries/exprs.py,sha256=dG9L218QtJM1HtDYIMWqHimK03N6AL1WONk3FvVRcXY,1480
@@ -819,74 +814,6 @@ omlish/text/minja.py,sha256=7UKNalkWpTG_364OIo7p5ym--uiNPR2RFBW_W8rrO4I,9194
819
814
  omlish/text/parts.py,sha256=MpiCUyfpcL4PLb2Etj8V7Yj4qofhy0xVwBrIL6RfNdg,6646
820
815
  omlish/text/random.py,sha256=8feS5JE_tSjYlMl-lp0j93kCfzBae9AM2cXlRLebXMA,199
821
816
  omlish/text/templating.py,sha256=i-HU7W-GtKdnBhEG3mnSey5ig7vV0q02D3pVzMoOzJY,3318
822
- omlish/text/antlr/__init__.py,sha256=88bMl_28cfSKslgOkMGYXqALgsHz3KC4LFvAVtzj7k8,89
823
- omlish/text/antlr/delimit.py,sha256=wvpZ-FlVoGwRjBALKT1in9cIriIwvyFqmHxgliNJEi8,3472
824
- omlish/text/antlr/dot.py,sha256=-WHO-xDSv-Ir00TZ4sVIwunKYtZkRveaQ4m5FKj_bRs,962
825
- omlish/text/antlr/errors.py,sha256=4J0WuVKbeFoZEP0wePCmn-e7mI1VMwWoE3wkeQO-4nk,313
826
- omlish/text/antlr/input.py,sha256=baeO279AIxR50pymya0eabtnc2A0bSdA5u7jvIGebzA,2090
827
- omlish/text/antlr/parsing.py,sha256=4J9sLZW8Nv6BDBqlHEg-nzLY_AfKE3lE0TpdXVKCUO8,1420
828
- omlish/text/antlr/runtime.py,sha256=wYUiJ0qoj4soHFL6fsq91MnUrDSKUEQVmJScKJibOAc,1975
829
- omlish/text/antlr/utils.py,sha256=hi_RFUl222r2gQsmmm5MYg5_vYa3q8u-KP4CC1ZHndA,912
830
- omlish/text/antlr/_runtime/BufferedTokenStream.py,sha256=1Rnhm62MZCWSuQeRs7lRUbdtdyo7Gyg8r4gAETjv-cE,10793
831
- omlish/text/antlr/_runtime/CommonTokenFactory.py,sha256=QrSSTH0gYhOpPeOHqrs6-2g1PGcgYvjhR6J6pynKLOc,2147
832
- omlish/text/antlr/_runtime/CommonTokenStream.py,sha256=L7giynpsS97oM6ZtPRIw8m6eIbGSaeEUJ7HN6b2etN4,2795
833
- omlish/text/antlr/_runtime/FileStream.py,sha256=X2PqkNatRxhFrk3acH4NhWv0aBCgMwAn87pmrTLmL5c,905
834
- omlish/text/antlr/_runtime/InputStream.py,sha256=50Ko4Vq-iWpk7sAMhJ0rrmB3LFv20TztUMpeIEcEfxg,2371
835
- omlish/text/antlr/_runtime/IntervalSet.py,sha256=-8puC1vhHPwFMG3YzmA62MjJf37hkBSzteJ_GIvXJhk,6002
836
- omlish/text/antlr/_runtime/LICENSE.txt,sha256=PbH7PueaS0-ZGPxND2Ezvxijz3h_EmzSL4qpuGIoHAw,1480
837
- omlish/text/antlr/_runtime/LL1Analyzer.py,sha256=Try7EBMnZfpDV-E_JDCTluc9XnbTPfNanDvVYtAUxzE,7747
838
- omlish/text/antlr/_runtime/Lexer.py,sha256=p5BbDve_V7Oms9FiiNfbVWWXc6dwt5B9wqije-RUc_0,11549
839
- omlish/text/antlr/_runtime/ListTokenSource.py,sha256=wjaO4eWaZu5LTHFlNGnaW4K8kfuPW28wVbRkyElYjD0,5381
840
- omlish/text/antlr/_runtime/Parser.py,sha256=RClLh37vtzhOpopUZPvSEesfya5yyC3Acpo1Bqzs1JM,22842
841
- omlish/text/antlr/_runtime/ParserInterpreter.py,sha256=F0Uscv8hApF7Z4Nm8sE9naGhJrn6tlix7BRcANOvpp8,7177
842
- omlish/text/antlr/_runtime/ParserRuleContext.py,sha256=2iV0H6_tjBD6LIQh8wMRlpZ4cSNxNc1_8MSeJUcdj7s,6787
843
- omlish/text/antlr/_runtime/PredictionContext.py,sha256=WWtD-vG0KcBtKqyjt42lGprSuu-VfSixeNxxbi8rQtw,23516
844
- omlish/text/antlr/_runtime/Recognizer.py,sha256=wsI9wHVeFk0b7J4E8dutGTX_B_U9lELoiTdoirQR29s,5397
845
- omlish/text/antlr/_runtime/RuleContext.py,sha256=tKXuP56if7CObxGkliLFynf8Da42Nr2CejFhReFK56g,8130
846
- omlish/text/antlr/_runtime/StdinStream.py,sha256=8up7-oFlr-ydpFV7kFqI1mRDD83Y8wYcXs0rBj-73Us,340
847
- omlish/text/antlr/_runtime/Token.py,sha256=Ywq-AwJz6GXQ431TTFExNylshQbNr6T5u4_48dxlrtk,5249
848
- omlish/text/antlr/_runtime/TokenStreamRewriter.py,sha256=2Zd8vdNQ7_XF1Y4r3axxHTD-hdauxyEPaePOqArF1g0,10355
849
- omlish/text/antlr/_runtime/Utils.py,sha256=Edv360609RwDaEz2JxlXCj9-HuXNEmqr4RVVcbhdLco,974
850
- omlish/text/antlr/_runtime/__init__.py,sha256=Jn5lqTVbeUQXD5a4IxDHKibOatAQWVTlaQ8M4mYu2Yw,28
851
- omlish/text/antlr/_runtime/_all.py,sha256=MbNYoQYRympa1nGlgtuZ1AkJTv1SacqvBKG7bTXG0So,1042
852
- omlish/text/antlr/_runtime/_pygrun.py,sha256=22tgQKyhLO2UbnwacAzsew7bkXjENctDs4XrmSHAqXc,6328
853
- omlish/text/antlr/_runtime/atn/ATN.py,sha256=0V07bHRY-_rX-Du85F08KbMDbvr055co3Crt0VZbwOo,5792
854
- omlish/text/antlr/_runtime/atn/ATNConfig.py,sha256=sY7zO2oSh9SLSvs05gY84vtFmV4ZcTKz7dXvDIxH_ew,6573
855
- omlish/text/antlr/_runtime/atn/ATNConfigSet.py,sha256=vm06ECB3eJsD7BssUCoi08FAsnpRnJJDeuMZKMrlDNc,8336
856
- omlish/text/antlr/_runtime/atn/ATNDeserializationOptions.py,sha256=87uY6moHi9KpjeRZxwGLsaUL4eNZabFLL9nEK9m-WxU,1053
857
- omlish/text/antlr/_runtime/atn/ATNDeserializer.py,sha256=TwMeggclcky9tlmAmUXEilBfp2GMIFyveJGOYai-h5Q,18938
858
- omlish/text/antlr/_runtime/atn/ATNSimulator.py,sha256=RCQsNhVBbY0tdShJYJ7m5jhbcAWPsLe1PnasrJ4owos,2311
859
- omlish/text/antlr/_runtime/atn/ATNState.py,sha256=Eq2l1BLDqtZG8VHmoDCEUnyeiRJ-hcWPrzE5Kh_MY9w,7696
860
- omlish/text/antlr/_runtime/atn/ATNType.py,sha256=_UdEWJXYM9gmOQ0u8XxruKLJTYU5ePuNGMAQQu1mWv4,465
861
- omlish/text/antlr/_runtime/atn/LexerATNSimulator.py,sha256=ZFUTqu7D39AiC8VZunslTrsl7sZKpukEzlkWFK8CRBA,25408
862
- omlish/text/antlr/_runtime/atn/LexerAction.py,sha256=PS8ArQadDRVXYnfCbOxJBuEVh7jMX2JtarhxZJ9c-jE,10057
863
- omlish/text/antlr/_runtime/atn/LexerActionExecutor.py,sha256=GoLnxIG-mzOAHLZvfgIBMGB9i2FyXrZrqtFK3B0Hoak,6448
864
- omlish/text/antlr/_runtime/atn/ParserATNSimulator.py,sha256=5N0htVWAy3x8rfWVs1YN2Jz16LLpXKjAwefFPXgBHcM,80746
865
- omlish/text/antlr/_runtime/atn/PredictionMode.py,sha256=JAnsYHfd6vD1t1wvLNpBuyi5avjxn8Flbkh_lcrgs1g,22479
866
- omlish/text/antlr/_runtime/atn/SemanticContext.py,sha256=jYz90ZjiL4Hcya5881fTQd3zvTzTYpjsntiqiRx7xLA,10674
867
- omlish/text/antlr/_runtime/atn/Transition.py,sha256=YrPBbwKK9E4SwFNmS5u6ATfZ-uC-fx5GSAtPyQsBn4E,8775
868
- omlish/text/antlr/_runtime/atn/__init__.py,sha256=lMd_BbXYdlDhZQN_q0TKN978XW5G0pq618F0NaLkpFE,71
869
- omlish/text/antlr/_runtime/dfa/DFA.py,sha256=1eLI8ckM7_Q4dx_l5m1eiiqJPpaTWJ1DDKUMUUbc-qA,5381
870
- omlish/text/antlr/_runtime/dfa/DFASerializer.py,sha256=HmQpIrVl0_kit8GSCqYyT4AnFvWyBj8vuye0YeFNEKE,2549
871
- omlish/text/antlr/_runtime/dfa/DFAState.py,sha256=vZ5sBJc0hp5BaOVVT3sdQEd1jEi6yb-u-aO9DHpC2Tw,5616
872
- omlish/text/antlr/_runtime/dfa/__init__.py,sha256=lMd_BbXYdlDhZQN_q0TKN978XW5G0pq618F0NaLkpFE,71
873
- omlish/text/antlr/_runtime/error/DiagnosticErrorListener.py,sha256=SyUCrVs2Vzgvf8j2cSkzjODRBeXrVVrKytRH2LxjALs,4479
874
- omlish/text/antlr/_runtime/error/ErrorListener.py,sha256=pPVVFGIDbELkMhG-A5-b39y3SkNkJvsP6n8Y0TfotfA,2765
875
- omlish/text/antlr/_runtime/error/ErrorStrategy.py,sha256=0nZwpqR8L0264DphJHoEmYkQHlxZxCEdO54RAvHY6FI,30407
876
- omlish/text/antlr/_runtime/error/Errors.py,sha256=sCf-5-vb9MyO8XIDdHSqV_ozfEcRrm87yjg_sNtStXM,6808
877
- omlish/text/antlr/_runtime/error/__init__.py,sha256=lMd_BbXYdlDhZQN_q0TKN978XW5G0pq618F0NaLkpFE,71
878
- omlish/text/antlr/_runtime/tree/Chunk.py,sha256=xsSnPUGcULkNDJNLlpqq1tqwa2WhsgH-K1JOfKRI3_A,738
879
- omlish/text/antlr/_runtime/tree/ParseTreeMatch.py,sha256=sKf5rCZK7NosjIWIMjb7DtgobDfOa1k5sXNrm43dwRE,4506
880
- omlish/text/antlr/_runtime/tree/ParseTreePattern.py,sha256=TUpGiMTK2_qZO77f0Qa_rZidJa9IiBLoXOTjbmgwH7o,2851
881
- omlish/text/antlr/_runtime/tree/ParseTreePatternMatcher.py,sha256=EzOgoX-2sp1Gxsls8AVqiT20RbslFkt5kYuNayj-czY,16320
882
- omlish/text/antlr/_runtime/tree/RuleTagToken.py,sha256=KB4A0yYRSoYLOoPZNQogi2uU9IriMr8aiY668wB-6dg,2060
883
- omlish/text/antlr/_runtime/tree/TokenTagToken.py,sha256=V2ymw3sTiykgi7Lp64a7VsW_s8LvxAQ2FiHd5aOJPhA,1614
884
- omlish/text/antlr/_runtime/tree/Tree.py,sha256=-5aYTkO_eUUGY2BPY03IJLyG72lNMeO_uuf2u1kZL_4,5610
885
- omlish/text/antlr/_runtime/tree/Trees.py,sha256=iRcq2bhjBziXEUr6OFFs1rJs82q6wXTSduSBfCMMG7k,3985
886
- omlish/text/antlr/_runtime/tree/__init__.py,sha256=Jn5lqTVbeUQXD5a4IxDHKibOatAQWVTlaQ8M4mYu2Yw,28
887
- omlish/text/antlr/_runtime/xpath/XPath.py,sha256=KSL1SH3VAeRDZCe4dAD7xmUdfk-j434ypZKRreFG2vk,9820
888
- omlish/text/antlr/_runtime/xpath/XPathLexer.py,sha256=WvGKQjQnu7pX5C4CFKtsCzba2B2W6ie4ivtWLvlgymM,3509
889
- omlish/text/antlr/_runtime/xpath/__init__.py,sha256=lMd_BbXYdlDhZQN_q0TKN978XW5G0pq618F0NaLkpFE,71
890
817
  omlish/text/go/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
891
818
  omlish/text/go/quoting.py,sha256=zbcPEDWsdj7GAemtu0x8nwMqpIu2C_5iInSwn6mMWlE,9142
892
819
  omlish/typedvalues/__init__.py,sha256=dQpM8VaON8S7dUv1LBwhyBDjUVo7EW475a9DpnDQz1E,936
@@ -899,9 +826,9 @@ omlish/typedvalues/marshal.py,sha256=AtBz7Jq-BfW8vwM7HSxSpR85JAXmxK2T0xDblmm1HI0
899
826
  omlish/typedvalues/of_.py,sha256=UXkxSj504WI2UrFlqdZJbu2hyDwBhL7XVrc2qdR02GQ,1309
900
827
  omlish/typedvalues/reflect.py,sha256=PAvKW6T4cW7u--iX80w3HWwZUS3SmIZ2_lQjT65uAyk,1026
901
828
  omlish/typedvalues/values.py,sha256=ym46I-q2QJ_6l4UlERqv3yj87R-kp8nCKMRph0xQ3UA,1307
902
- omlish-0.0.0.dev437.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
903
- omlish-0.0.0.dev437.dist-info/METADATA,sha256=2_Z3T_A2_h4ZPbJLqWYJyqEE-sYaVCp0-cNlmzIJ6M4,19005
904
- omlish-0.0.0.dev437.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
905
- omlish-0.0.0.dev437.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
906
- omlish-0.0.0.dev437.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
907
- omlish-0.0.0.dev437.dist-info/RECORD,,
829
+ omlish-0.0.0.dev439.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
830
+ omlish-0.0.0.dev439.dist-info/METADATA,sha256=Sb_tGPltUyRpCzhFFI9-HrwblPX4hTyeVJ2SPrKxwD8,19003
831
+ omlish-0.0.0.dev439.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
832
+ omlish-0.0.0.dev439.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
833
+ omlish-0.0.0.dev439.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
834
+ omlish-0.0.0.dev439.dist-info/RECORD,,