omlish 0.0.0.dev401__py3-none-any.whl → 0.0.0.dev402__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 +3 -3
- omlish/lang/imports/traversal.py +1 -1
- omlish/manifests/loading.py +9 -7
- {omlish-0.0.0.dev401.dist-info → omlish-0.0.0.dev402.dist-info}/METADATA +3 -3
- {omlish-0.0.0.dev401.dist-info → omlish-0.0.0.dev402.dist-info}/RECORD +9 -9
- {omlish-0.0.0.dev401.dist-info → omlish-0.0.0.dev402.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev401.dist-info → omlish-0.0.0.dev402.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev401.dist-info → omlish-0.0.0.dev402.dist-info}/licenses/LICENSE +0 -0
- {omlish-0.0.0.dev401.dist-info → omlish-0.0.0.dev402.dist-info}/top_level.txt +0 -0
omlish/__about__.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
__version__ = '0.0.0.
|
2
|
-
__revision__ = '
|
1
|
+
__version__ = '0.0.0.dev402'
|
2
|
+
__revision__ = '923dbb60edd6e046587daf400ee931ae9ec619de'
|
3
3
|
|
4
4
|
|
5
5
|
#
|
@@ -51,7 +51,7 @@ class Project(ProjectBase):
|
|
51
51
|
|
52
52
|
'python-snappy ~= 0.7',
|
53
53
|
|
54
|
-
'zstandard ~= 0.
|
54
|
+
'zstandard ~= 0.24',
|
55
55
|
|
56
56
|
'brotli ~= 1.1',
|
57
57
|
],
|
omlish/lang/imports/traversal.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"""
|
2
2
|
TODO:
|
3
|
-
- overhaul this - use pkgutil.walk_packages unless
|
3
|
+
- overhaul this - use pkgutil.walk_packages unless caller needs non-importing (which this currently doesn't do anyway),
|
4
4
|
and support namespace packages if they do.
|
5
5
|
"""
|
6
6
|
import contextlib
|
omlish/manifests/loading.py
CHANGED
@@ -8,7 +8,8 @@ TODO:
|
|
8
8
|
- real relative cls names - shouldn't need parent package names
|
9
9
|
- *require* loaded class names - special All sentinel for explicit all
|
10
10
|
- ! late instantiation !
|
11
|
-
-
|
11
|
+
- TypeMap style weak cache of issubclass queries
|
12
|
+
- wait.. lazily load the class for virtual subclass queries? xor support virtual bases?
|
12
13
|
"""
|
13
14
|
import dataclasses as dc
|
14
15
|
import importlib.machinery
|
@@ -273,12 +274,13 @@ class ManifestLoader:
|
|
273
274
|
|
274
275
|
#
|
275
276
|
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
277
|
+
# FIXME:
|
278
|
+
# class LOAD_ALL: # noqa
|
279
|
+
# def __new__(cls, *args, **kwargs): # noqa
|
280
|
+
# raise TypeError
|
281
|
+
#
|
282
|
+
# def __init_subclass__(cls, **kwargs): # noqa
|
283
|
+
# raise TypeError
|
282
284
|
|
283
285
|
def _load(
|
284
286
|
self,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omlish
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev402
|
4
4
|
Summary: omlish
|
5
5
|
Author: wrmsr
|
6
6
|
License-Expression: BSD-3-Clause
|
@@ -22,7 +22,7 @@ Requires-Dist: trio~=0.30; extra == "all"
|
|
22
22
|
Requires-Dist: trio-asyncio~=0.15; extra == "all"
|
23
23
|
Requires-Dist: lz4~=4.4; extra == "all"
|
24
24
|
Requires-Dist: python-snappy~=0.7; extra == "all"
|
25
|
-
Requires-Dist: zstandard~=0.
|
25
|
+
Requires-Dist: zstandard~=0.24; extra == "all"
|
26
26
|
Requires-Dist: brotli~=1.1; extra == "all"
|
27
27
|
Requires-Dist: asttokens~=3.0; extra == "all"
|
28
28
|
Requires-Dist: executing~=2.2; extra == "all"
|
@@ -63,7 +63,7 @@ Requires-Dist: trio-asyncio~=0.15; extra == "async"
|
|
63
63
|
Provides-Extra: compress
|
64
64
|
Requires-Dist: lz4~=4.4; extra == "compress"
|
65
65
|
Requires-Dist: python-snappy~=0.7; extra == "compress"
|
66
|
-
Requires-Dist: zstandard~=0.
|
66
|
+
Requires-Dist: zstandard~=0.24; extra == "compress"
|
67
67
|
Requires-Dist: brotli~=1.1; extra == "compress"
|
68
68
|
Provides-Extra: diag
|
69
69
|
Requires-Dist: asttokens~=3.0; extra == "diag"
|
@@ -1,5 +1,5 @@
|
|
1
1
|
omlish/.manifests.json,sha256=aT8yZ-Zh-9wfHl5Ym5ouiWC1i0cy7Q7RlhzavB6VLPI,8587
|
2
|
-
omlish/__about__.py,sha256=
|
2
|
+
omlish/__about__.py,sha256=iDAg-fMcGCRDczeTg78gCXGIynAhZMN-oYTNadqljJ0,3576
|
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
|
@@ -467,7 +467,7 @@ omlish/lang/imports/conditional.py,sha256=qxHYlE_xuwPJb6F9K8upagHxuYL0APPLWRVo50
|
|
467
467
|
omlish/lang/imports/lazy.py,sha256=gDv7ffrGsPEAHZ9a1Myt7Uf-4vqWErhCd1DaS7SQL0c,1464
|
468
468
|
omlish/lang/imports/proxyinit.py,sha256=prcQSZYdXSvZLsWZClNSOhIJVHNMuO8nD9NTtG-fFv4,12636
|
469
469
|
omlish/lang/imports/resolution.py,sha256=DeRarn35Fryg5JhVhy8wbiC9lvr58AnllI9B_reswUE,2085
|
470
|
-
omlish/lang/imports/traversal.py,sha256=
|
470
|
+
omlish/lang/imports/traversal.py,sha256=pbFQIa880NGjSfcLsno2vE_G41_CLwDHb-7gWg2J3BI,2855
|
471
471
|
omlish/lifecycles/__init__.py,sha256=1FjYceXs-4fc-S-C9zFYmc2axHs4znnQHcJVHdY7a6E,578
|
472
472
|
omlish/lifecycles/abstract.py,sha256=c9UY7oxzYZ_neh5DPE4yv5HfuDv7B4Mj_9Zo-B8KDSs,1114
|
473
473
|
omlish/lifecycles/base.py,sha256=DeUxARnOufWfBvhZQbonl1RVJgbrSeK5QNM6dWEuOwA,1398
|
@@ -519,7 +519,7 @@ omlish/logs/utils.py,sha256=OkFWf1exmWImmT7BaSiIC7c0Fk9tAis-PRqo8H4ny3c,398
|
|
519
519
|
omlish/manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
520
520
|
omlish/manifests/base.py,sha256=Z5afzBJgI0tyTS8mPbYY4pYvoZu_xtdhRBOtZ3IIwzA,929
|
521
521
|
omlish/manifests/globals.py,sha256=nrA85o8zFTEYv440Y1wgr7SmtW6AE_3jF_Dls6RB_nE,1661
|
522
|
-
omlish/manifests/loading.py,sha256=
|
522
|
+
omlish/manifests/loading.py,sha256=kzJwESneZB1mAK6PsVPXvfNjr-MOXL7bbKQ8gEmbVkU,11984
|
523
523
|
omlish/manifests/static.py,sha256=7YwOVh_Ek9_aTrWsWNO8kWS10_j4K7yv3TpXZSHsvDY,501
|
524
524
|
omlish/manifests/types.py,sha256=5hQuY-WZ9VMqHZXr-9Dayg380JsnX2vJzXyw6vC6UDs,317
|
525
525
|
omlish/marshal/.dataclasses.json,sha256=wXWUy_IR8AolAa2RQnqn_mo2QnmVcvUJmayIykdVl0I,22
|
@@ -908,9 +908,9 @@ omlish/typedvalues/marshal.py,sha256=AtBz7Jq-BfW8vwM7HSxSpR85JAXmxK2T0xDblmm1HI0
|
|
908
908
|
omlish/typedvalues/of_.py,sha256=UXkxSj504WI2UrFlqdZJbu2hyDwBhL7XVrc2qdR02GQ,1309
|
909
909
|
omlish/typedvalues/reflect.py,sha256=PAvKW6T4cW7u--iX80w3HWwZUS3SmIZ2_lQjT65uAyk,1026
|
910
910
|
omlish/typedvalues/values.py,sha256=ym46I-q2QJ_6l4UlERqv3yj87R-kp8nCKMRph0xQ3UA,1307
|
911
|
-
omlish-0.0.0.
|
912
|
-
omlish-0.0.0.
|
913
|
-
omlish-0.0.0.
|
914
|
-
omlish-0.0.0.
|
915
|
-
omlish-0.0.0.
|
916
|
-
omlish-0.0.0.
|
911
|
+
omlish-0.0.0.dev402.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
912
|
+
omlish-0.0.0.dev402.dist-info/METADATA,sha256=vvELyku0Fo56crdctExjmjMC0AjhB2p8VclLoR2sxOE,18825
|
913
|
+
omlish-0.0.0.dev402.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
914
|
+
omlish-0.0.0.dev402.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
|
915
|
+
omlish-0.0.0.dev402.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
|
916
|
+
omlish-0.0.0.dev402.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|