omlish 0.0.0.dev322__py3-none-any.whl → 0.0.0.dev324__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/collections/cache/descriptor.py +1 -1
- omlish/diag/procstats.py +2 -2
- omlish/formats/xml.py +1 -1
- omlish/funcs/genmachine.py +1 -1
- omlish/iterators/tools.py +1 -1
- omlish/lang/__init__.py +1 -0
- omlish/lang/cached/function.py +1 -1
- omlish/lang/contextmanagers.py +2 -2
- omlish/lang/functions.py +4 -0
- omlish/logs/proxy.py +1 -1
- omlish/testing/pytest/__init__.py +1 -0
- omlish/testing/pytest/marks.py +14 -0
- omlish/testing/pytest/plugins/asyncs/plugin.py +1 -1
- omlish/testing/pytest/plugins/switches.py +1 -0
- {omlish-0.0.0.dev322.dist-info → omlish-0.0.0.dev324.dist-info}/METADATA +1 -1
- {omlish-0.0.0.dev322.dist-info → omlish-0.0.0.dev324.dist-info}/RECORD +21 -20
- {omlish-0.0.0.dev322.dist-info → omlish-0.0.0.dev324.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev322.dist-info → omlish-0.0.0.dev324.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev322.dist-info → omlish-0.0.0.dev324.dist-info}/licenses/LICENSE +0 -0
- {omlish-0.0.0.dev322.dist-info → omlish-0.0.0.dev324.dist-info}/top_level.txt +0 -0
omlish/__about__.py
CHANGED
omlish/diag/procstats.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
import dataclasses as dc
|
2
1
|
import os
|
3
2
|
import typing as ta
|
4
3
|
|
4
|
+
from .. import dataclasses as dc
|
5
5
|
from .. import lang
|
6
6
|
|
7
7
|
|
@@ -35,7 +35,7 @@ def times() -> Times:
|
|
35
35
|
class ProcStats:
|
36
36
|
pid: int
|
37
37
|
|
38
|
-
rss: int
|
38
|
+
rss: int = dc.xfield(repr_fn=lambda i: f'{i:_}')
|
39
39
|
|
40
40
|
|
41
41
|
def get_psutil_procstats(pid: int | None = None) -> ProcStats:
|
omlish/formats/xml.py
CHANGED
omlish/funcs/genmachine.py
CHANGED
omlish/iterators/tools.py
CHANGED
@@ -19,7 +19,7 @@ def unzip(it: ta.Iterable[T], width: int | None = None) -> list:
|
|
19
19
|
if not isinstance(it, PeekIterator):
|
20
20
|
it = PeekIterator(iter(it))
|
21
21
|
try:
|
22
|
-
width = len(it.peek())
|
22
|
+
width = len(it.peek()) # type: ignore[arg-type]
|
23
23
|
except StopIteration:
|
24
24
|
return []
|
25
25
|
|
omlish/lang/__init__.py
CHANGED
omlish/lang/cached/function.py
CHANGED
@@ -242,7 +242,7 @@ class _CachedFunction(ta.Generic[T], Abstract):
|
|
242
242
|
def call_value_fn():
|
243
243
|
try:
|
244
244
|
return self._value_fn(*args, **kwargs)
|
245
|
-
except ce as ex:
|
245
|
+
except ce as ex:
|
246
246
|
return _CachedException(ex)
|
247
247
|
|
248
248
|
if self._lock is not None:
|
omlish/lang/contextmanagers.py
CHANGED
@@ -76,7 +76,7 @@ class ContextManager(abc.ABC, ta.Generic[T]):
|
|
76
76
|
|
77
77
|
def __enter__(self) -> T:
|
78
78
|
self._contextmanager = self.__contextmanager__()
|
79
|
-
return self._contextmanager.__enter__()
|
79
|
+
return self._contextmanager.__enter__()
|
80
80
|
|
81
81
|
def __exit__(
|
82
82
|
self,
|
@@ -105,7 +105,7 @@ class AsyncContextManager(abc.ABC, ta.Generic[T]):
|
|
105
105
|
|
106
106
|
async def __aenter__(self) -> T:
|
107
107
|
self._asynccontextmanager = self.__asynccontextmanager__()
|
108
|
-
return await self._asynccontextmanager.__aenter__()
|
108
|
+
return await self._asynccontextmanager.__aenter__()
|
109
109
|
|
110
110
|
async def __aexit__(
|
111
111
|
self,
|
omlish/lang/functions.py
CHANGED
omlish/logs/proxy.py
CHANGED
@@ -0,0 +1,14 @@
|
|
1
|
+
import gc
|
2
|
+
import typing as ta
|
3
|
+
|
4
|
+
import pytest
|
5
|
+
|
6
|
+
from .plugins.managermarks import ManagerMark
|
7
|
+
|
8
|
+
|
9
|
+
class gc_collect_after(ManagerMark): # noqa
|
10
|
+
def __call__(self, item: pytest.Function) -> ta.Iterator[None]:
|
11
|
+
try:
|
12
|
+
yield
|
13
|
+
finally:
|
14
|
+
gc.collect()
|
@@ -66,7 +66,7 @@ class AsyncsPlugin:
|
|
66
66
|
warnings.warn(message, *args, **kwargs)
|
67
67
|
|
68
68
|
aio_plugin.warnings = lang.proxy_import('warnings') # type: ignore
|
69
|
-
aio_plugin.warnings.warn = aio_plugin_warn
|
69
|
+
aio_plugin.warnings.warn = aio_plugin_warn
|
70
70
|
|
71
71
|
def pytest_configure(self, config):
|
72
72
|
config.addinivalue_line('markers', f'{ASYNCS_MARK}: marks for all async backends')
|
@@ -1,5 +1,5 @@
|
|
1
1
|
omlish/.manifests.json,sha256=orgsRvtpHu8tdhaCvlP9v3P495OJopYYiHKjK68WtWg,8587
|
2
|
-
omlish/__about__.py,sha256=
|
2
|
+
omlish/__about__.py,sha256=RIJDWJT7aTvq6WVukFxeI8leEd-msgKydBtuT4dvSqc,3478
|
3
3
|
omlish/__init__.py,sha256=SsyiITTuK0v74XpKV8dqNaCmjOlan1JZKrHQv5rWKPA,253
|
4
4
|
omlish/c3.py,sha256=rer-TPOFDU6fYq_AWio_AmA-ckZ8JDY5shIzQ_yXfzA,8414
|
5
5
|
omlish/cached.py,sha256=MLap_p0rdGoDIMVhXVHm1tsbcWobJF0OanoodV03Ju8,542
|
@@ -90,7 +90,7 @@ omlish/collections/ranked.py,sha256=McB8C2UQfUvrbmxGTpBz1-EZuyCLkBFtktzncMdt8_Y,
|
|
90
90
|
omlish/collections/unmodifiable.py,sha256=X7kKhPFdZF4m28SfLDxZL-riWlhbZffdPv35aTP30YM,4753
|
91
91
|
omlish/collections/utils.py,sha256=1LED_KLXsEb39Byhql7BD5ObHoSkFn2OyUdnHsKXKNo,4091
|
92
92
|
omlish/collections/cache/__init__.py,sha256=D1gO71VcwxFTZP9gAc9isHfg_TEdalwhsJcgGLvS9hg,233
|
93
|
-
omlish/collections/cache/descriptor.py,sha256=
|
93
|
+
omlish/collections/cache/descriptor.py,sha256=5SOsKNxnhisJY22l7tujMOI6MGGr6TERzgsfjvGXOyA,5013
|
94
94
|
omlish/collections/cache/impl.py,sha256=Y18OcAsNL6dIWuk89UlZBpqq0iBU-P4VDio6eis43Us,14760
|
95
95
|
omlish/collections/cache/types.py,sha256=uND_qOk8bVVmdhrOhjx9QHYqs2jq53NThEqQAl3Nepw,690
|
96
96
|
omlish/collections/kv/__init__.py,sha256=qPuE8bmbyOkT_qVGH5owSp0SbC9xI_p_LS0tP7S7QSw,751
|
@@ -209,7 +209,7 @@ omlish/diag/debug.py,sha256=ClED7kKXeVMyKrjGIxcq14kXk9kvUJfytBQwK9y7c4Q,1637
|
|
209
209
|
omlish/diag/lslocks.py,sha256=fWI3SZwgEkhipVfSqvzVzREJRShcDYmlYByHBT0LToc,1744
|
210
210
|
omlish/diag/lsof.py,sha256=DnowqvKYah-WCuBHS3DAcZCvlsWJdM9kYNFq97UZDDA,9127
|
211
211
|
omlish/diag/procfs.py,sha256=KaGTAA2Gj8eEEp7MjClRe4aimwzd-HDABThFzvq2cBQ,9684
|
212
|
-
omlish/diag/procstats.py,sha256=
|
212
|
+
omlish/diag/procstats.py,sha256=EJEe2Zc58ykBoTfqMXro7H52aQa_pd6uC2hsIPFceso,825
|
213
213
|
omlish/diag/ps.py,sha256=b7ai9O4mGZliNFvBu6PdQfMmct4qpcMTygEf1ISHBLQ,1666
|
214
214
|
omlish/diag/pycharm.py,sha256=Z2W-Viqw5xq08ZC4z36skpozfYw_qNNhWQx_GYr2D0k,4695
|
215
215
|
omlish/diag/pydevd.py,sha256=UN55ZjkWLCVyHxE2CNRRYamuvSKfzWsn0D5oczRTXO4,7536
|
@@ -250,7 +250,7 @@ omlish/formats/dotenv.py,sha256=qoDG4Ayu7B-8LjBBhcmNiLZW0_9LgCi3Ri2aPo9DEQ8,1931
|
|
250
250
|
omlish/formats/pickle.py,sha256=jdp4E9WH9qVPBE3sSqbqDtUo18RbTSIiSpSzJ-IEVZw,529
|
251
251
|
omlish/formats/props.py,sha256=auCv-Jx79KGlWfyG1-Qo0ou-Ex0W_mF3r_lDFdsVkWI,18920
|
252
252
|
omlish/formats/repr.py,sha256=kYrNs4o-ji8nOdp6u_L3aMgBMWN1ZAZJSAWgQQfStSQ,414
|
253
|
-
omlish/formats/xml.py,sha256=
|
253
|
+
omlish/formats/xml.py,sha256=S_5txvWn8Gv4D8cS0-amxrsmvjBGap3gKMXqEkdtpss,3515
|
254
254
|
omlish/formats/yaml.py,sha256=jGPQlTE0vSV-p0O7TJRNlf6o1uq4gx8PrHZe1ApJ_o8,7386
|
255
255
|
omlish/formats/edn/__init__.py,sha256=H3q5B-dibXvQV8pmuWizTo6Xk75M7M0M7VPCLt86rpo,195
|
256
256
|
omlish/formats/edn/codec.py,sha256=k6-Ra3P3Rlv6JA69-jPLI4nCe5XVes_QJbcsj5DYzMM,454
|
@@ -299,7 +299,7 @@ omlish/formats/toml/codec.py,sha256=5HFGWEPd9IFxPlRMRheX8FEDlRIzLe1moHEOj2_PFKU,
|
|
299
299
|
omlish/formats/toml/parser.py,sha256=0laC7Br_Colk8QxgmuU_pPg6fhcAQ2rMB2saSlLm9S0,30637
|
300
300
|
omlish/formats/toml/writer.py,sha256=HIp6XvriXaPTLqyLe-fkIiEf1Pyhsp0TcOg5rFBpO3g,3226
|
301
301
|
omlish/funcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
302
|
-
omlish/funcs/genmachine.py,sha256=
|
302
|
+
omlish/funcs/genmachine.py,sha256=D9dChaliNBIjYE6lJP5ctcVQUCffNBhceyaaLvBJ7ns,2578
|
303
303
|
omlish/funcs/match.py,sha256=gMLZn1enNiFvQaWrQubY300M1BrmdKWzeePihBS7Ywc,6153
|
304
304
|
omlish/funcs/pairs.py,sha256=VCkZjDmJGtR76BsejsHNfb4TcpHCtkkmak-zWDFchAo,3904
|
305
305
|
omlish/funcs/pipes.py,sha256=E7Sz8Aj8ke_vCs5AMNwg1I36kRdHVGTnzxVQaDyn43U,2490
|
@@ -402,19 +402,19 @@ omlish/io/fdio/pollers.py,sha256=yNadAt3W5wd90PFmd3vD77bq5QwoVb2A6SM2JjZpKRs,550
|
|
402
402
|
omlish/iterators/__init__.py,sha256=yMavf5FofiS1EU4UFuWPXiFZ03W0H-y7MuMxW8FUaEE,358
|
403
403
|
omlish/iterators/iterators.py,sha256=RxW35yQ5ed8vBQ22IqpDXFx-i5JiLQdp7-pkMZXhJJ8,3159
|
404
404
|
omlish/iterators/recipes.py,sha256=wOwOZg-zWG9Zc3wcAxJFSe2rtavVBYwZOfG09qYEx_4,472
|
405
|
-
omlish/iterators/tools.py,sha256=
|
405
|
+
omlish/iterators/tools.py,sha256=tdtWhwkPQq3sg7Brakrcbf8e1cOBg6e0TtwnSMnvEpg,2582
|
406
406
|
omlish/iterators/unique.py,sha256=Nw0pSaNEcHAkve0ugfLPvJcirDOn9ECyC5wIL8JlJKI,1395
|
407
|
-
omlish/lang/__init__.py,sha256=
|
407
|
+
omlish/lang/__init__.py,sha256=MiD9k_mfXZKPStgooj-vsiBksFh_OSmgTxZFXmhIQcg,6150
|
408
408
|
omlish/lang/attrs.py,sha256=i7euRF81uNF8QDmUVXSK_BtqLGshaMi4VVdUnMjiMwg,5050
|
409
409
|
omlish/lang/casing.py,sha256=cFUlbDdXLhwnWwcYx4qnM5c4zGX7hIRUfcjiZbxUD28,4636
|
410
410
|
omlish/lang/clsdct.py,sha256=HAGIvBSbCefzRjXriwYSBLO7QHKRv2UsE78jixOb-fA,1828
|
411
411
|
omlish/lang/collections.py,sha256=LVm0Sory60IXyFzYhhO8BZAWy_z_pjiA-meXNlSJP7o,2465
|
412
412
|
omlish/lang/comparison.py,sha256=MOwEG0Yny-jBPHO9kQto9FSRyeNpQW24UABsghkrHxY,1356
|
413
|
-
omlish/lang/contextmanagers.py,sha256=
|
413
|
+
omlish/lang/contextmanagers.py,sha256=Cv6lLCKFSBpJO9TGph4wyLlVs_kxKK98KI8pC_rS0FI,7226
|
414
414
|
omlish/lang/datetimes.py,sha256=mrTtA67JYpfQwSlzdPcBtvm6dAyYM_dXNnlxFwFQH0M,228
|
415
415
|
omlish/lang/descriptors.py,sha256=zBtgO9LjdSTGHNUgiIqswh78WOVoGH6KzS0NbgB1Wls,6572
|
416
416
|
omlish/lang/enums.py,sha256=F9tflHfaAoV2MpyuhZzpfX9-H55M3zNa9hCszsngEo8,111
|
417
|
-
omlish/lang/functions.py,sha256=
|
417
|
+
omlish/lang/functions.py,sha256=qNqzWF6vI6PGTzKhgkhnNXP8e1gSerb8GsHG3_wVBP8,6386
|
418
418
|
omlish/lang/generators.py,sha256=a4D5HU_mySs2T2z3xCmE_s3t4QJkj0YRrK4-hhpGd0A,5197
|
419
419
|
omlish/lang/imports.py,sha256=y9W9Y-d_cQ35QCLuSIPoa6vnEqSErFCz8b-34IH128U,10552
|
420
420
|
omlish/lang/iterables.py,sha256=StoGp9yaP3njdLKHoWYcEevO3eE8SHEPYl5_avZob24,2149
|
@@ -429,7 +429,7 @@ omlish/lang/strings.py,sha256=kJmRFd1D36xXcjd9MdB12BCwF_-MVhNr-TpWj7hMi_4,4252
|
|
429
429
|
omlish/lang/sys.py,sha256=b4qOPiJZQru_mbb04FNfOjYWUxlV2becZOoc-yya_rQ,411
|
430
430
|
omlish/lang/typing.py,sha256=Zdad9Zv0sa-hIaUXPrzPidT7sDVpRcussAI7D-j-I1c,3296
|
431
431
|
omlish/lang/cached/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
432
|
-
omlish/lang/cached/function.py,sha256
|
432
|
+
omlish/lang/cached/function.py,sha256=-LSaxkpRdNZw_cuQdKspuPh1tVJrHm4qecNEGzRKnTQ,11322
|
433
433
|
omlish/lang/cached/property.py,sha256=WHYyg4-6EA86TcNMfbXTjVhjEZPc0kngt9hfY3WN5w8,2768
|
434
434
|
omlish/lang/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
435
435
|
omlish/lang/classes/abstract.py,sha256=A-Jg5X8o_WvFryN0Cm2TpVkrZoTT1SYKQnv_pXjZk7o,3808
|
@@ -479,7 +479,7 @@ omlish/logs/handlers.py,sha256=wymFmRO8fcBePyfir9U4FIHzWuyW0D_HwEQAiIQLwAk,324
|
|
479
479
|
omlish/logs/json.py,sha256=muekHkKmGIqq_wr-tV94WwXjNFtUBbFeRdni-JhrCkA,1371
|
480
480
|
omlish/logs/noisy.py,sha256=hWpbseerZqlHdEPEajDTSmcRhx8LmmNAxz_7GBZAO9s,353
|
481
481
|
omlish/logs/protocol.py,sha256=dfAR0_5kLEAkx0nhuWBhWMTVjWjhEl2uL-MxejrW1lk,4732
|
482
|
-
omlish/logs/proxy.py,sha256=
|
482
|
+
omlish/logs/proxy.py,sha256=9FmqWQuX3pXezWkCeN17H805CicKN6-QqMKGptk45PI,2378
|
483
483
|
omlish/logs/standard.py,sha256=FbKdF2Z4Na5i2TNwKn0avLJXyICe2JKsPufjvKCHGn0,3162
|
484
484
|
omlish/logs/timing.py,sha256=XrFUHIPT4EHDujLKbGs9fGFMmoM3NEP8xPRaESJr7bQ,1513
|
485
485
|
omlish/logs/utils.py,sha256=OkFWf1exmWImmT7BaSiIC7c0Fk9tAis-PRqo8H4ny3c,398
|
@@ -738,8 +738,9 @@ omlish/term/vt100/states.py,sha256=OxPUxfFTcfz56MhtDgIigEApChOtN6XO1g6R2H08mu4,8
|
|
738
738
|
omlish/term/vt100/terminal.py,sha256=KUlg331ele7P6SHsBKdbpdQFDKsxSply1Ds27NkppTs,9359
|
739
739
|
omlish/testing/__init__.py,sha256=M_BQrcCHkoL-ZvE-UpQ8XxXNYRRawhjUz4rCJnAqM2A,152
|
740
740
|
omlish/testing/testing.py,sha256=zmBHw5gw1ZUUcDYC0uonSThjhRn0HNuorjpo0jLvju8,2885
|
741
|
-
omlish/testing/pytest/__init__.py,sha256=
|
741
|
+
omlish/testing/pytest/__init__.py,sha256=i4ti6Q2rVYJ-XBk9UYDfUUagCrEDTC5jOeSykBjYYZQ,234
|
742
742
|
omlish/testing/pytest/helpers.py,sha256=HxiKvpJQ4b6WCiQXOqQTqKbmr7CMAgCF6hViT6pfIuw,202
|
743
|
+
omlish/testing/pytest/marks.py,sha256=qhVnq-3LlQ5uRLS1LXYkh8Xk-8aQGOgs2Nr49T8YqOA,280
|
743
744
|
omlish/testing/pytest/skip.py,sha256=imDrBhQKQkEmStaSn0Js-zsfyKMPmNod-mW1ANdIhak,989
|
744
745
|
omlish/testing/pytest/inject/__init__.py,sha256=pdRKv1HcDmJ_yArKJbYITPXXZthRSGgBJWqITr0Er38,117
|
745
746
|
omlish/testing/pytest/inject/harness.py,sha256=_Qf7lLcYc_dpauYOE68u_a65jPCFWmQUYv9m_OOdNqs,5724
|
@@ -752,12 +753,12 @@ omlish/testing/pytest/plugins/pydevd.py,sha256=5moE64LrNRV6gKRaeCuONDiwuh-4UFxJP
|
|
752
753
|
omlish/testing/pytest/plugins/repeat.py,sha256=jiZCI-17042jBvUEbZCxNwqWtr7s3EhTBSeSHh_Uz4E,497
|
753
754
|
omlish/testing/pytest/plugins/skips.py,sha256=eMir_n777Kk2BvOwjQzRROKL4iAMYKSHFwWCHJ-bdPI,1040
|
754
755
|
omlish/testing/pytest/plugins/spacing.py,sha256=tzq-L-exegHe2BImumkYIsVcUwpUUhLJJOuSrsKDuCU,706
|
755
|
-
omlish/testing/pytest/plugins/switches.py,sha256=
|
756
|
+
omlish/testing/pytest/plugins/switches.py,sha256=t4kzdB_4Isp_cUtseKKMGHZ6cTriX3VGrzuqmNHCgMg,5210
|
756
757
|
omlish/testing/pytest/plugins/utils.py,sha256=L5C622UXcA_AUKDcvyh5IMiRfqSGGz0McdhwZWvfMlU,261
|
757
758
|
omlish/testing/pytest/plugins/asyncs/__init__.py,sha256=TTNhFmP_krug1973sq_bpWBTIvg68-1nbuVLSs92Z6k,41
|
758
759
|
omlish/testing/pytest/plugins/asyncs/consts.py,sha256=0NOCkzV43dOu3u97BqYMQ4mPG8JuFncpWibkOZpCqX4,55
|
759
760
|
omlish/testing/pytest/plugins/asyncs/fixtures.py,sha256=O0gT4jVH-4t1WYpY2j51QgsbdK8LKt4R9hOxnf74eTg,11264
|
760
|
-
omlish/testing/pytest/plugins/asyncs/plugin.py,sha256
|
761
|
+
omlish/testing/pytest/plugins/asyncs/plugin.py,sha256=Z7uKL-leu3aM10hX98_bKwWEvRYE2dAPLY2RbcHq-WQ,6005
|
761
762
|
omlish/testing/pytest/plugins/asyncs/utils.py,sha256=K-nQxSJQL-3N_xtLqfCX11KSLYCG_gPQ6hZqLQZIHNQ,294
|
762
763
|
omlish/testing/pytest/plugins/asyncs/backends/__init__.py,sha256=DpJGt5KA2N2pNXy59raVyJH1969M1AP80pJAqIlNEAs,359
|
763
764
|
omlish/testing/pytest/plugins/asyncs/backends/asyncio.py,sha256=0b8pmbXNW2qI8qo1ARxpONdqw8DWf0v5J2-9mkM9hrc,820
|
@@ -856,9 +857,9 @@ omlish/typedvalues/holder.py,sha256=ZTnHiw-K38ciOBLEdwgrltr7Xp8jjEs_0Lp69DH-G-o,
|
|
856
857
|
omlish/typedvalues/marshal.py,sha256=hWHRLcrGav7lvXJDtb9bNI0ickl4SKPQ6F4BbTpqw3A,4219
|
857
858
|
omlish/typedvalues/reflect.py,sha256=Ih1YgU-srUjsvBn_P7C66f73_VCvcwqE3ffeBnZBgt4,674
|
858
859
|
omlish/typedvalues/values.py,sha256=ym46I-q2QJ_6l4UlERqv3yj87R-kp8nCKMRph0xQ3UA,1307
|
859
|
-
omlish-0.0.0.
|
860
|
-
omlish-0.0.0.
|
861
|
-
omlish-0.0.0.
|
862
|
-
omlish-0.0.0.
|
863
|
-
omlish-0.0.0.
|
864
|
-
omlish-0.0.0.
|
860
|
+
omlish-0.0.0.dev324.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
861
|
+
omlish-0.0.0.dev324.dist-info/METADATA,sha256=cvoRr807Bf7z8c0DJfoo46V0v17yj6akOnN34Pr6mZk,4416
|
862
|
+
omlish-0.0.0.dev324.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
863
|
+
omlish-0.0.0.dev324.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
|
864
|
+
omlish-0.0.0.dev324.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
|
865
|
+
omlish-0.0.0.dev324.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|