omdev 0.0.0.dev451__py3-none-any.whl → 0.0.0.dev453__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.
- omdev/scripts/ci.py +8 -0
- omdev/scripts/interp.py +8 -0
- omdev/scripts/lib/inject.py +8 -0
- omdev/scripts/pyproject.py +8 -0
- {omdev-0.0.0.dev451.dist-info → omdev-0.0.0.dev453.dist-info}/METADATA +2 -2
- {omdev-0.0.0.dev451.dist-info → omdev-0.0.0.dev453.dist-info}/RECORD +10 -10
- {omdev-0.0.0.dev451.dist-info → omdev-0.0.0.dev453.dist-info}/WHEEL +0 -0
- {omdev-0.0.0.dev451.dist-info → omdev-0.0.0.dev453.dist-info}/entry_points.txt +0 -0
- {omdev-0.0.0.dev451.dist-info → omdev-0.0.0.dev453.dist-info}/licenses/LICENSE +0 -0
- {omdev-0.0.0.dev451.dist-info → omdev-0.0.0.dev453.dist-info}/top_level.txt +0 -0
omdev/scripts/ci.py
CHANGED
@@ -49,6 +49,7 @@ import io
|
|
49
49
|
import itertools
|
50
50
|
import json
|
51
51
|
import logging
|
52
|
+
import operator
|
52
53
|
import os
|
53
54
|
import os.path
|
54
55
|
import re
|
@@ -4775,6 +4776,13 @@ class _EmptyMaybe(_Maybe[T]):
|
|
4775
4776
|
Maybe._empty = _EmptyMaybe() # noqa
|
4776
4777
|
|
4777
4778
|
|
4779
|
+
##
|
4780
|
+
|
4781
|
+
|
4782
|
+
setattr(Maybe, 'just', _JustMaybe) # noqa
|
4783
|
+
setattr(Maybe, 'empty', functools.partial(operator.attrgetter('_empty'), Maybe))
|
4784
|
+
|
4785
|
+
|
4778
4786
|
########################################
|
4779
4787
|
# ../../../omlish/lite/runtime.py
|
4780
4788
|
|
omdev/scripts/interp.py
CHANGED
@@ -27,6 +27,7 @@ import inspect
|
|
27
27
|
import itertools
|
28
28
|
import json
|
29
29
|
import logging
|
30
|
+
import operator
|
30
31
|
import os
|
31
32
|
import os.path
|
32
33
|
import re
|
@@ -2687,6 +2688,13 @@ class _EmptyMaybe(_Maybe[T]):
|
|
2687
2688
|
Maybe._empty = _EmptyMaybe() # noqa
|
2688
2689
|
|
2689
2690
|
|
2691
|
+
##
|
2692
|
+
|
2693
|
+
|
2694
|
+
setattr(Maybe, 'just', _JustMaybe) # noqa
|
2695
|
+
setattr(Maybe, 'empty', functools.partial(operator.attrgetter('_empty'), Maybe))
|
2696
|
+
|
2697
|
+
|
2690
2698
|
########################################
|
2691
2699
|
# ../../../omlish/lite/runtime.py
|
2692
2700
|
|
omdev/scripts/lib/inject.py
CHANGED
@@ -13,6 +13,7 @@ import contextvars
|
|
13
13
|
import dataclasses as dc
|
14
14
|
import functools
|
15
15
|
import inspect
|
16
|
+
import operator
|
16
17
|
import sys
|
17
18
|
import threading
|
18
19
|
import types
|
@@ -953,6 +954,13 @@ class _EmptyMaybe(_Maybe[T]):
|
|
953
954
|
Maybe._empty = _EmptyMaybe() # noqa
|
954
955
|
|
955
956
|
|
957
|
+
##
|
958
|
+
|
959
|
+
|
960
|
+
setattr(Maybe, 'just', _JustMaybe) # noqa
|
961
|
+
setattr(Maybe, 'empty', functools.partial(operator.attrgetter('_empty'), Maybe))
|
962
|
+
|
963
|
+
|
956
964
|
########################################
|
957
965
|
# inject.py
|
958
966
|
|
omdev/scripts/pyproject.py
CHANGED
@@ -53,6 +53,7 @@ import itertools
|
|
53
53
|
import json
|
54
54
|
import logging
|
55
55
|
import multiprocessing as mp
|
56
|
+
import operator
|
56
57
|
import os
|
57
58
|
import os.path
|
58
59
|
import re
|
@@ -5284,6 +5285,13 @@ class _EmptyMaybe(_Maybe[T]):
|
|
5284
5285
|
Maybe._empty = _EmptyMaybe() # noqa
|
5285
5286
|
|
5286
5287
|
|
5288
|
+
##
|
5289
|
+
|
5290
|
+
|
5291
|
+
setattr(Maybe, 'just', _JustMaybe) # noqa
|
5292
|
+
setattr(Maybe, 'empty', functools.partial(operator.attrgetter('_empty'), Maybe))
|
5293
|
+
|
5294
|
+
|
5287
5295
|
########################################
|
5288
5296
|
# ../../../omlish/lite/runtime.py
|
5289
5297
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omdev
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev453
|
4
4
|
Summary: omdev
|
5
5
|
Author: wrmsr
|
6
6
|
License-Expression: BSD-3-Clause
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
14
14
|
Requires-Python: >=3.13
|
15
15
|
Description-Content-Type: text/markdown
|
16
16
|
License-File: LICENSE
|
17
|
-
Requires-Dist: omlish==0.0.0.
|
17
|
+
Requires-Dist: omlish==0.0.0.dev453
|
18
18
|
Provides-Extra: all
|
19
19
|
Requires-Dist: black~=25.1; extra == "all"
|
20
20
|
Requires-Dist: pycparser~=2.23; extra == "all"
|
@@ -274,13 +274,13 @@ omdev/pyproject/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
274
274
|
omdev/pyproject/resources/docker-dev.sh,sha256=DHkz5D18jok_oDolfg2mqrvGRWFoCe9GQo04dR1czcc,838
|
275
275
|
omdev/pyproject/resources/python.sh,sha256=rFaN4SiJ9hdLDXXsDTwugI6zsw6EPkgYMmtacZeTbvw,749
|
276
276
|
omdev/scripts/__init__.py,sha256=MKCvUAEQwsIvwLixwtPlpBqmkMXLCnjjXyAXvVpDwVk,91
|
277
|
-
omdev/scripts/ci.py,sha256=
|
278
|
-
omdev/scripts/interp.py,sha256=
|
279
|
-
omdev/scripts/pyproject.py,sha256=
|
277
|
+
omdev/scripts/ci.py,sha256=nP3eVIBl910rzI9GIu84adnFddO_Lr1eMuqgMidyTGk,426524
|
278
|
+
omdev/scripts/interp.py,sha256=GELa1TPg0tStMbofHpEYetMrAl3YnInehwler2gdE2I,168564
|
279
|
+
omdev/scripts/pyproject.py,sha256=wf3hKkkAjQn7qwnY6cHTRJg3_duUi2R8a3foFaNuehQ,349235
|
280
280
|
omdev/scripts/slowcat.py,sha256=PwdT-pg62imEEb6kcOozl9_YUi-4KopvjvzWT1OmGb0,2717
|
281
281
|
omdev/scripts/tmpexec.py,sha256=t0nErDRALjTk7H0X8ADjZUIDFjlPNzOOokmjCjBHdzs,1431
|
282
282
|
omdev/scripts/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
283
|
-
omdev/scripts/lib/inject.py,sha256=
|
283
|
+
omdev/scripts/lib/inject.py,sha256=RLaY0ngSAI54p4BskEWBznKhoqs2kO2U1TKd373SezQ,53822
|
284
284
|
omdev/scripts/lib/logs.py,sha256=zRZYc-P9B0-uSETpIXNkNmb874jVvTfKtmUSJ47yZFw,63073
|
285
285
|
omdev/scripts/lib/marshal.py,sha256=DOsUKJ1U3mwsNN1Et20cqJUBlzZZcmAv1m-zxMKHYEQ,46835
|
286
286
|
omdev/tokens/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -324,9 +324,9 @@ omdev/tools/jsonview/resources/jsonview.js,sha256=faDvXDOXKvEvjOuIlz4D3F2ReQXb_b
|
|
324
324
|
omdev/tools/pawk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
325
325
|
omdev/tools/pawk/__main__.py,sha256=VCqeRVnqT1RPEoIrqHFSu4PXVMg4YEgF4qCQm90-eRI,66
|
326
326
|
omdev/tools/pawk/pawk.py,sha256=ao5mdrpiSU4AZ8mBozoEaV3UVlmVTnRG9wD9XP70MZE,11429
|
327
|
-
omdev-0.0.0.
|
328
|
-
omdev-0.0.0.
|
329
|
-
omdev-0.0.0.
|
330
|
-
omdev-0.0.0.
|
331
|
-
omdev-0.0.0.
|
332
|
-
omdev-0.0.0.
|
327
|
+
omdev-0.0.0.dev453.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
328
|
+
omdev-0.0.0.dev453.dist-info/METADATA,sha256=gL3g4gmLQVmG73SiP6g3W5UfEiWJHN6r-CcxLflHcyU,5100
|
329
|
+
omdev-0.0.0.dev453.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
330
|
+
omdev-0.0.0.dev453.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
|
331
|
+
omdev-0.0.0.dev453.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
|
332
|
+
omdev-0.0.0.dev453.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|