omlish 0.0.0.dev323__py3-none-any.whl → 0.0.0.dev325__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/pycharm.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/plugins/asyncs/plugin.py +1 -1
- omlish/testing/pytest/plugins/depskip.py +20 -1
- {omlish-0.0.0.dev323.dist-info → omlish-0.0.0.dev325.dist-info}/METADATA +1 -1
- {omlish-0.0.0.dev323.dist-info → omlish-0.0.0.dev325.dist-info}/RECORD +19 -19
- {omlish-0.0.0.dev323.dist-info → omlish-0.0.0.dev325.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev323.dist-info → omlish-0.0.0.dev325.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev323.dist-info → omlish-0.0.0.dev325.dist-info}/licenses/LICENSE +0 -0
- {omlish-0.0.0.dev323.dist-info → omlish-0.0.0.dev325.dist-info}/top_level.txt +0 -0
omlish/__about__.py
CHANGED
omlish/diag/pycharm.py
CHANGED
@@ -14,12 +14,12 @@ from .. import lang
|
|
14
14
|
if ta.TYPE_CHECKING:
|
15
15
|
import plistlib
|
16
16
|
|
17
|
-
from .. import docker
|
17
|
+
from ..docker import all as docker
|
18
18
|
|
19
19
|
else:
|
20
20
|
plistlib = lang.proxy_import('plistlib')
|
21
21
|
|
22
|
-
docker = lang.proxy_import('..docker')
|
22
|
+
docker = lang.proxy_import('..docker.all')
|
23
23
|
|
24
24
|
|
25
25
|
##
|
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
@@ -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')
|
@@ -66,7 +66,7 @@ class DepSkipPlugin:
|
|
66
66
|
collector._getobj = _patched_getobj # type: ignore # noqa
|
67
67
|
|
68
68
|
|
69
|
-
def
|
69
|
+
def regex_register(
|
70
70
|
pm: pytest.PytestPluginManager,
|
71
71
|
file_pats: ta.Iterable[str],
|
72
72
|
imp_pats: ta.Iterable[str],
|
@@ -79,3 +79,22 @@ def register(
|
|
79
79
|
[re.compile(fp) for fp in file_pats],
|
80
80
|
[re.compile(ip) for ip in imp_pats],
|
81
81
|
))
|
82
|
+
|
83
|
+
|
84
|
+
def module_register(
|
85
|
+
pm: pytest.PytestPluginManager,
|
86
|
+
mods: ta.Iterable[str],
|
87
|
+
imp_mods: ta.Iterable[str],
|
88
|
+
) -> None:
|
89
|
+
check.not_isinstance(mods, str)
|
90
|
+
check.not_isinstance(imp_mods, str)
|
91
|
+
|
92
|
+
for m in [*mods, *imp_mods]:
|
93
|
+
check.non_empty_str(m)
|
94
|
+
check.arg(all(p.isidentifier() for p in m.split('.')), m)
|
95
|
+
|
96
|
+
regex_register(
|
97
|
+
pm,
|
98
|
+
[rf'{re.escape(m.replace(".", "/"))}/.*\.py' for m in mods],
|
99
|
+
[rf'{re.escape(m.replace(".", "/"))}(\..*)?' for m in imp_mods],
|
100
|
+
)
|
@@ -1,5 +1,5 @@
|
|
1
1
|
omlish/.manifests.json,sha256=orgsRvtpHu8tdhaCvlP9v3P495OJopYYiHKjK68WtWg,8587
|
2
|
-
omlish/__about__.py,sha256=
|
2
|
+
omlish/__about__.py,sha256=JzG831_Ux1NSldRoOCPf4bfkuXTYQjLmFHyetsWKjoM,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
|
@@ -211,7 +211,7 @@ omlish/diag/lsof.py,sha256=DnowqvKYah-WCuBHS3DAcZCvlsWJdM9kYNFq97UZDDA,9127
|
|
211
211
|
omlish/diag/procfs.py,sha256=KaGTAA2Gj8eEEp7MjClRe4aimwzd-HDABThFzvq2cBQ,9684
|
212
212
|
omlish/diag/procstats.py,sha256=EJEe2Zc58ykBoTfqMXro7H52aQa_pd6uC2hsIPFceso,825
|
213
213
|
omlish/diag/ps.py,sha256=b7ai9O4mGZliNFvBu6PdQfMmct4qpcMTygEf1ISHBLQ,1666
|
214
|
-
omlish/diag/pycharm.py,sha256=
|
214
|
+
omlish/diag/pycharm.py,sha256=9Mgn5T2ZdlEUL3VV-GzVmCBs_ZtIpLwaUzP6pgHEUEo,4712
|
215
215
|
omlish/diag/pydevd.py,sha256=UN55ZjkWLCVyHxE2CNRRYamuvSKfzWsn0D5oczRTXO4,7536
|
216
216
|
omlish/diag/threads.py,sha256=1-x02VCDZ407gfbtXm1pWK-ubqhqfePm9PMqkHCVoqk,3642
|
217
217
|
omlish/diag/_pycharm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -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
|
@@ -746,7 +746,7 @@ omlish/testing/pytest/inject/__init__.py,sha256=pdRKv1HcDmJ_yArKJbYITPXXZthRSGgB
|
|
746
746
|
omlish/testing/pytest/inject/harness.py,sha256=_Qf7lLcYc_dpauYOE68u_a65jPCFWmQUYv9m_OOdNqs,5724
|
747
747
|
omlish/testing/pytest/plugins/__init__.py,sha256=ys1zXrYrNm7Uo6YOIVJ6Bd3dQo6kv387k7MbTYlqZSI,467
|
748
748
|
omlish/testing/pytest/plugins/_registry.py,sha256=IK04KlBgiOJxKAyCCgjpX2R-9tE-btalYJkgjLc8Te8,77
|
749
|
-
omlish/testing/pytest/plugins/depskip.py,sha256=
|
749
|
+
omlish/testing/pytest/plugins/depskip.py,sha256=9xsvf4Py31Cc3RMUBA-BcTkOstLmYsU1GA4iwNr3fPo,3209
|
750
750
|
omlish/testing/pytest/plugins/logging.py,sha256=ZUy4sQOMYroZubUnjYe4_KC1kqukgBbA84VjO0NwfsA,390
|
751
751
|
omlish/testing/pytest/plugins/managermarks.py,sha256=IzkspjT8-ToPIlHZs9cHt6RYbm51poJLjYVvkFPbJhE,1300
|
752
752
|
omlish/testing/pytest/plugins/pydevd.py,sha256=5moE64LrNRV6gKRaeCuONDiwuh-4UFxJPWD9K9PR8GM,841
|
@@ -758,7 +758,7 @@ omlish/testing/pytest/plugins/utils.py,sha256=L5C622UXcA_AUKDcvyh5IMiRfqSGGz0Mcd
|
|
758
758
|
omlish/testing/pytest/plugins/asyncs/__init__.py,sha256=TTNhFmP_krug1973sq_bpWBTIvg68-1nbuVLSs92Z6k,41
|
759
759
|
omlish/testing/pytest/plugins/asyncs/consts.py,sha256=0NOCkzV43dOu3u97BqYMQ4mPG8JuFncpWibkOZpCqX4,55
|
760
760
|
omlish/testing/pytest/plugins/asyncs/fixtures.py,sha256=O0gT4jVH-4t1WYpY2j51QgsbdK8LKt4R9hOxnf74eTg,11264
|
761
|
-
omlish/testing/pytest/plugins/asyncs/plugin.py,sha256
|
761
|
+
omlish/testing/pytest/plugins/asyncs/plugin.py,sha256=Z7uKL-leu3aM10hX98_bKwWEvRYE2dAPLY2RbcHq-WQ,6005
|
762
762
|
omlish/testing/pytest/plugins/asyncs/utils.py,sha256=K-nQxSJQL-3N_xtLqfCX11KSLYCG_gPQ6hZqLQZIHNQ,294
|
763
763
|
omlish/testing/pytest/plugins/asyncs/backends/__init__.py,sha256=DpJGt5KA2N2pNXy59raVyJH1969M1AP80pJAqIlNEAs,359
|
764
764
|
omlish/testing/pytest/plugins/asyncs/backends/asyncio.py,sha256=0b8pmbXNW2qI8qo1ARxpONdqw8DWf0v5J2-9mkM9hrc,820
|
@@ -857,9 +857,9 @@ omlish/typedvalues/holder.py,sha256=ZTnHiw-K38ciOBLEdwgrltr7Xp8jjEs_0Lp69DH-G-o,
|
|
857
857
|
omlish/typedvalues/marshal.py,sha256=hWHRLcrGav7lvXJDtb9bNI0ickl4SKPQ6F4BbTpqw3A,4219
|
858
858
|
omlish/typedvalues/reflect.py,sha256=Ih1YgU-srUjsvBn_P7C66f73_VCvcwqE3ffeBnZBgt4,674
|
859
859
|
omlish/typedvalues/values.py,sha256=ym46I-q2QJ_6l4UlERqv3yj87R-kp8nCKMRph0xQ3UA,1307
|
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.
|
865
|
-
omlish-0.0.0.
|
860
|
+
omlish-0.0.0.dev325.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
861
|
+
omlish-0.0.0.dev325.dist-info/METADATA,sha256=aK9jNtSuLUVs0t58mcypYSFehrEGznoT0CnKud8bUcc,4416
|
862
|
+
omlish-0.0.0.dev325.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
863
|
+
omlish-0.0.0.dev325.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
|
864
|
+
omlish-0.0.0.dev325.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
|
865
|
+
omlish-0.0.0.dev325.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|