omdev 0.0.0.dev424__py3-none-any.whl → 0.0.0.dev426__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/{.manifests.json → .omlish-manifests.json} +1 -13
- omdev/ci/cache.py +4 -1
- omdev/ci/cli.py +4 -1
- omdev/ci/docker/cacheserved/cache.py +4 -1
- omdev/ci/docker/packing.py +1 -1
- omdev/ci/github/api/clients.py +4 -1
- omdev/ci/github/api/v1/client.py +4 -1
- omdev/ci/github/api/v2/azure.py +4 -1
- omdev/ci/github/api/v2/client.py +4 -1
- omdev/imgur.py +2 -2
- omdev/interp/providers/standalone.py +4 -1
- omdev/manifests/_dumping.py +1 -8
- omdev/manifests/building.py +6 -3
- omdev/packaging/revisions.py +4 -1
- omdev/ptk/markdown/utils.py +1 -1
- omdev/py/attrdocs.py +3 -3
- omdev/py/docstrings/numpydoc.py +4 -4
- omdev/py/tools/mkrelimp.py +1 -1
- omdev/pyproject/pkg.py +5 -2
- omdev/pyproject/reqs.py +4 -1
- omdev/pyproject/venvs.py +4 -1
- omdev/scripts/ci.py +4469 -4325
- omdev/scripts/interp.py +20 -24
- omdev/scripts/pyproject.py +44 -32
- omdev/tools/json/processing.py +1 -1
- {omdev-0.0.0.dev424.dist-info → omdev-0.0.0.dev426.dist-info}/METADATA +2 -2
- {omdev-0.0.0.dev424.dist-info → omdev-0.0.0.dev426.dist-info}/RECORD +31 -36
- omdev/tools/antlr/__init__.py +0 -0
- omdev/tools/antlr/__main__.py +0 -11
- omdev/tools/antlr/cli.py +0 -62
- omdev/tools/antlr/consts.py +0 -7
- omdev/tools/antlr/gen.py +0 -188
- {omdev-0.0.0.dev424.dist-info → omdev-0.0.0.dev426.dist-info}/WHEEL +0 -0
- {omdev-0.0.0.dev424.dist-info → omdev-0.0.0.dev426.dist-info}/entry_points.txt +0 -0
- {omdev-0.0.0.dev424.dist-info → omdev-0.0.0.dev426.dist-info}/licenses/LICENSE +0 -0
- {omdev-0.0.0.dev424.dist-info → omdev-0.0.0.dev426.dist-info}/top_level.txt +0 -0
omdev/scripts/interp.py
CHANGED
@@ -644,7 +644,7 @@ class _AbstractCachedNullary:
|
|
644
644
|
def __call__(self, *args, **kwargs): # noqa
|
645
645
|
raise TypeError
|
646
646
|
|
647
|
-
def __get__(self, instance, owner): # noqa
|
647
|
+
def __get__(self, instance, owner=None): # noqa
|
648
648
|
bound = instance.__dict__[self._fn.__name__] = self.__class__(self._fn.__get__(instance, owner))
|
649
649
|
return bound
|
650
650
|
|
@@ -1370,13 +1370,6 @@ def split_keep_delimiter(s, d):
|
|
1370
1370
|
##
|
1371
1371
|
|
1372
1372
|
|
1373
|
-
def attr_repr(obj: ta.Any, *attrs: str) -> str:
|
1374
|
-
return f'{type(obj).__name__}({", ".join(f"{attr}={getattr(obj, attr)!r}" for attr in attrs)})'
|
1375
|
-
|
1376
|
-
|
1377
|
-
##
|
1378
|
-
|
1379
|
-
|
1380
1373
|
FORMAT_NUM_BYTES_SUFFIXES: ta.Sequence[str] = ['B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB']
|
1381
1374
|
|
1382
1375
|
|
@@ -1393,13 +1386,13 @@ def format_num_bytes(num_bytes: int) -> str:
|
|
1393
1386
|
|
1394
1387
|
|
1395
1388
|
########################################
|
1396
|
-
# ../../../omlish/logs/filters.py
|
1389
|
+
# ../../../omlish/logs/std/filters.py
|
1397
1390
|
|
1398
1391
|
|
1399
1392
|
##
|
1400
1393
|
|
1401
1394
|
|
1402
|
-
class
|
1395
|
+
class TidLoggingFilter(logging.Filter):
|
1403
1396
|
def filter(self, record):
|
1404
1397
|
# FIXME: handle better - missing from wasm and cosmos
|
1405
1398
|
if hasattr(threading, 'get_native_id'):
|
@@ -1410,13 +1403,13 @@ class TidLogFilter(logging.Filter):
|
|
1410
1403
|
|
1411
1404
|
|
1412
1405
|
########################################
|
1413
|
-
# ../../../omlish/logs/proxy.py
|
1406
|
+
# ../../../omlish/logs/std/proxy.py
|
1414
1407
|
|
1415
1408
|
|
1416
1409
|
##
|
1417
1410
|
|
1418
1411
|
|
1419
|
-
class
|
1412
|
+
class ProxyLoggingFilterer(logging.Filterer):
|
1420
1413
|
def __init__(self, underlying: logging.Filterer) -> None: # noqa
|
1421
1414
|
self._underlying = underlying
|
1422
1415
|
|
@@ -1442,9 +1435,9 @@ class ProxyLogFilterer(logging.Filterer):
|
|
1442
1435
|
return self._underlying.filter(record)
|
1443
1436
|
|
1444
1437
|
|
1445
|
-
class
|
1438
|
+
class ProxyLoggingHandler(ProxyLoggingFilterer, logging.Handler):
|
1446
1439
|
def __init__(self, underlying: logging.Handler) -> None: # noqa
|
1447
|
-
|
1440
|
+
ProxyLoggingFilterer.__init__(self, underlying)
|
1448
1441
|
|
1449
1442
|
_underlying: logging.Handler
|
1450
1443
|
|
@@ -2472,6 +2465,7 @@ class _Maybe(Maybe[T], Abstract):
|
|
2472
2465
|
return op and not sp
|
2473
2466
|
|
2474
2467
|
|
2468
|
+
@ta.final
|
2475
2469
|
class _JustMaybe(_Maybe[T]):
|
2476
2470
|
__slots__ = ('_v', '_hash')
|
2477
2471
|
|
@@ -2509,6 +2503,7 @@ class _JustMaybe(_Maybe[T]):
|
|
2509
2503
|
)
|
2510
2504
|
|
2511
2505
|
|
2506
|
+
@ta.final
|
2512
2507
|
class _EmptyMaybe(_Maybe[T]):
|
2513
2508
|
__slots__ = ()
|
2514
2509
|
|
@@ -2754,7 +2749,7 @@ class PredicateTimeout(Timeout):
|
|
2754
2749
|
|
2755
2750
|
|
2756
2751
|
########################################
|
2757
|
-
# ../../../omlish/logs/json.py
|
2752
|
+
# ../../../omlish/logs/std/json.py
|
2758
2753
|
"""
|
2759
2754
|
TODO:
|
2760
2755
|
- translate json keys
|
@@ -2764,7 +2759,7 @@ TODO:
|
|
2764
2759
|
##
|
2765
2760
|
|
2766
2761
|
|
2767
|
-
class
|
2762
|
+
class JsonLoggingFormatter(logging.Formatter):
|
2768
2763
|
KEYS: ta.Mapping[str, bool] = {
|
2769
2764
|
'name': False,
|
2770
2765
|
'msg': False,
|
@@ -4019,6 +4014,7 @@ inj = InjectionApi()
|
|
4019
4014
|
# ../../../omlish/logs/standard.py
|
4020
4015
|
"""
|
4021
4016
|
TODO:
|
4017
|
+
- !! move to std !!
|
4022
4018
|
- structured
|
4023
4019
|
- prefixed
|
4024
4020
|
- debug
|
@@ -4040,7 +4036,7 @@ STANDARD_LOG_FORMAT_PARTS = [
|
|
4040
4036
|
]
|
4041
4037
|
|
4042
4038
|
|
4043
|
-
class
|
4039
|
+
class StandardLoggingFormatter(logging.Formatter):
|
4044
4040
|
@staticmethod
|
4045
4041
|
def build_log_format(parts: ta.Iterable[ta.Tuple[str, str]]) -> str:
|
4046
4042
|
return ' '.join(v for k, v in parts)
|
@@ -4059,7 +4055,7 @@ class StandardLogFormatter(logging.Formatter):
|
|
4059
4055
|
##
|
4060
4056
|
|
4061
4057
|
|
4062
|
-
class
|
4058
|
+
class StandardConfiguredLoggingHandler(ProxyLoggingHandler):
|
4063
4059
|
def __init_subclass__(cls, **kwargs):
|
4064
4060
|
raise TypeError('This class serves only as a marker and should not be subclassed.')
|
4065
4061
|
|
@@ -4092,7 +4088,7 @@ def configure_standard_logging(
|
|
4092
4088
|
target: ta.Optional[logging.Logger] = None,
|
4093
4089
|
force: bool = False,
|
4094
4090
|
handler_factory: ta.Optional[ta.Callable[[], logging.Handler]] = None,
|
4095
|
-
) -> ta.Optional[
|
4091
|
+
) -> ta.Optional[StandardConfiguredLoggingHandler]:
|
4096
4092
|
with _locking_logging_module_lock():
|
4097
4093
|
if target is None:
|
4098
4094
|
target = logging.root
|
@@ -4100,7 +4096,7 @@ def configure_standard_logging(
|
|
4100
4096
|
#
|
4101
4097
|
|
4102
4098
|
if not force:
|
4103
|
-
if any(isinstance(h,
|
4099
|
+
if any(isinstance(h, StandardConfiguredLoggingHandler) for h in list(target.handlers)):
|
4104
4100
|
return None
|
4105
4101
|
|
4106
4102
|
#
|
@@ -4114,14 +4110,14 @@ def configure_standard_logging(
|
|
4114
4110
|
|
4115
4111
|
formatter: logging.Formatter
|
4116
4112
|
if json:
|
4117
|
-
formatter =
|
4113
|
+
formatter = JsonLoggingFormatter()
|
4118
4114
|
else:
|
4119
|
-
formatter =
|
4115
|
+
formatter = StandardLoggingFormatter(StandardLoggingFormatter.build_log_format(STANDARD_LOG_FORMAT_PARTS))
|
4120
4116
|
handler.setFormatter(formatter)
|
4121
4117
|
|
4122
4118
|
#
|
4123
4119
|
|
4124
|
-
handler.addFilter(
|
4120
|
+
handler.addFilter(TidLoggingFilter())
|
4125
4121
|
|
4126
4122
|
#
|
4127
4123
|
|
@@ -4134,7 +4130,7 @@ def configure_standard_logging(
|
|
4134
4130
|
|
4135
4131
|
#
|
4136
4132
|
|
4137
|
-
return
|
4133
|
+
return StandardConfiguredLoggingHandler(handler)
|
4138
4134
|
|
4139
4135
|
|
4140
4136
|
########################################
|
omdev/scripts/pyproject.py
CHANGED
@@ -2068,7 +2068,7 @@ class _AbstractCachedNullary:
|
|
2068
2068
|
def __call__(self, *args, **kwargs): # noqa
|
2069
2069
|
raise TypeError
|
2070
2070
|
|
2071
|
-
def __get__(self, instance, owner): # noqa
|
2071
|
+
def __get__(self, instance, owner=None): # noqa
|
2072
2072
|
bound = instance.__dict__[self._fn.__name__] = self.__class__(self._fn.__get__(instance, owner))
|
2073
2073
|
return bound
|
2074
2074
|
|
@@ -2629,13 +2629,6 @@ json_dump_compact: ta.Callable[..., None] = functools.partial(json.dump, **JSON_
|
|
2629
2629
|
json_dumps_compact: ta.Callable[..., str] = functools.partial(json.dumps, **JSON_COMPACT_KWARGS)
|
2630
2630
|
|
2631
2631
|
|
2632
|
-
########################################
|
2633
|
-
# ../../../omlish/lite/logs.py
|
2634
|
-
|
2635
|
-
|
2636
|
-
log = logging.getLogger(__name__)
|
2637
|
-
|
2638
|
-
|
2639
2632
|
########################################
|
2640
2633
|
# ../../../omlish/lite/objects.py
|
2641
2634
|
|
@@ -2881,13 +2874,6 @@ def split_keep_delimiter(s, d):
|
|
2881
2874
|
##
|
2882
2875
|
|
2883
2876
|
|
2884
|
-
def attr_repr(obj: ta.Any, *attrs: str) -> str:
|
2885
|
-
return f'{type(obj).__name__}({", ".join(f"{attr}={getattr(obj, attr)!r}" for attr in attrs)})'
|
2886
|
-
|
2887
|
-
|
2888
|
-
##
|
2889
|
-
|
2890
|
-
|
2891
2877
|
FORMAT_NUM_BYTES_SUFFIXES: ta.Sequence[str] = ['B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB']
|
2892
2878
|
|
2893
2879
|
|
@@ -2962,13 +2948,24 @@ def typing_annotations_attr() -> str:
|
|
2962
2948
|
|
2963
2949
|
|
2964
2950
|
########################################
|
2965
|
-
# ../../../omlish/logs/
|
2951
|
+
# ../../../omlish/logs/modules.py
|
2952
|
+
|
2953
|
+
|
2954
|
+
##
|
2955
|
+
|
2956
|
+
|
2957
|
+
def get_module_logger(mod_globals: ta.Mapping[str, ta.Any]) -> logging.Logger:
|
2958
|
+
return logging.getLogger(mod_globals.get('__name__'))
|
2959
|
+
|
2960
|
+
|
2961
|
+
########################################
|
2962
|
+
# ../../../omlish/logs/std/filters.py
|
2966
2963
|
|
2967
2964
|
|
2968
2965
|
##
|
2969
2966
|
|
2970
2967
|
|
2971
|
-
class
|
2968
|
+
class TidLoggingFilter(logging.Filter):
|
2972
2969
|
def filter(self, record):
|
2973
2970
|
# FIXME: handle better - missing from wasm and cosmos
|
2974
2971
|
if hasattr(threading, 'get_native_id'):
|
@@ -2979,13 +2976,13 @@ class TidLogFilter(logging.Filter):
|
|
2979
2976
|
|
2980
2977
|
|
2981
2978
|
########################################
|
2982
|
-
# ../../../omlish/logs/proxy.py
|
2979
|
+
# ../../../omlish/logs/std/proxy.py
|
2983
2980
|
|
2984
2981
|
|
2985
2982
|
##
|
2986
2983
|
|
2987
2984
|
|
2988
|
-
class
|
2985
|
+
class ProxyLoggingFilterer(logging.Filterer):
|
2989
2986
|
def __init__(self, underlying: logging.Filterer) -> None: # noqa
|
2990
2987
|
self._underlying = underlying
|
2991
2988
|
|
@@ -3011,9 +3008,9 @@ class ProxyLogFilterer(logging.Filterer):
|
|
3011
3008
|
return self._underlying.filter(record)
|
3012
3009
|
|
3013
3010
|
|
3014
|
-
class
|
3011
|
+
class ProxyLoggingHandler(ProxyLoggingFilterer, logging.Handler):
|
3015
3012
|
def __init__(self, underlying: logging.Handler) -> None: # noqa
|
3016
|
-
|
3013
|
+
ProxyLoggingFilterer.__init__(self, underlying)
|
3017
3014
|
|
3018
3015
|
_underlying: logging.Handler
|
3019
3016
|
|
@@ -3843,6 +3840,9 @@ TODO:
|
|
3843
3840
|
"""
|
3844
3841
|
|
3845
3842
|
|
3843
|
+
log = get_module_logger(globals()) # noqa
|
3844
|
+
|
3845
|
+
|
3846
3846
|
##
|
3847
3847
|
|
3848
3848
|
|
@@ -5129,6 +5129,7 @@ class _Maybe(Maybe[T], Abstract):
|
|
5129
5129
|
return op and not sp
|
5130
5130
|
|
5131
5131
|
|
5132
|
+
@ta.final
|
5132
5133
|
class _JustMaybe(_Maybe[T]):
|
5133
5134
|
__slots__ = ('_v', '_hash')
|
5134
5135
|
|
@@ -5166,6 +5167,7 @@ class _JustMaybe(_Maybe[T]):
|
|
5166
5167
|
)
|
5167
5168
|
|
5168
5169
|
|
5170
|
+
@ta.final
|
5169
5171
|
class _EmptyMaybe(_Maybe[T]):
|
5170
5172
|
__slots__ = ()
|
5171
5173
|
|
@@ -5411,7 +5413,7 @@ class PredicateTimeout(Timeout):
|
|
5411
5413
|
|
5412
5414
|
|
5413
5415
|
########################################
|
5414
|
-
# ../../../omlish/logs/json.py
|
5416
|
+
# ../../../omlish/logs/std/json.py
|
5415
5417
|
"""
|
5416
5418
|
TODO:
|
5417
5419
|
- translate json keys
|
@@ -5421,7 +5423,7 @@ TODO:
|
|
5421
5423
|
##
|
5422
5424
|
|
5423
5425
|
|
5424
|
-
class
|
5426
|
+
class JsonLoggingFormatter(logging.Formatter):
|
5425
5427
|
KEYS: ta.Mapping[str, bool] = {
|
5426
5428
|
'name': False,
|
5427
5429
|
'msg': False,
|
@@ -6676,6 +6678,7 @@ inj = InjectionApi()
|
|
6676
6678
|
# ../../../omlish/logs/standard.py
|
6677
6679
|
"""
|
6678
6680
|
TODO:
|
6681
|
+
- !! move to std !!
|
6679
6682
|
- structured
|
6680
6683
|
- prefixed
|
6681
6684
|
- debug
|
@@ -6697,7 +6700,7 @@ STANDARD_LOG_FORMAT_PARTS = [
|
|
6697
6700
|
]
|
6698
6701
|
|
6699
6702
|
|
6700
|
-
class
|
6703
|
+
class StandardLoggingFormatter(logging.Formatter):
|
6701
6704
|
@staticmethod
|
6702
6705
|
def build_log_format(parts: ta.Iterable[ta.Tuple[str, str]]) -> str:
|
6703
6706
|
return ' '.join(v for k, v in parts)
|
@@ -6716,7 +6719,7 @@ class StandardLogFormatter(logging.Formatter):
|
|
6716
6719
|
##
|
6717
6720
|
|
6718
6721
|
|
6719
|
-
class
|
6722
|
+
class StandardConfiguredLoggingHandler(ProxyLoggingHandler):
|
6720
6723
|
def __init_subclass__(cls, **kwargs):
|
6721
6724
|
raise TypeError('This class serves only as a marker and should not be subclassed.')
|
6722
6725
|
|
@@ -6749,7 +6752,7 @@ def configure_standard_logging(
|
|
6749
6752
|
target: ta.Optional[logging.Logger] = None,
|
6750
6753
|
force: bool = False,
|
6751
6754
|
handler_factory: ta.Optional[ta.Callable[[], logging.Handler]] = None,
|
6752
|
-
) -> ta.Optional[
|
6755
|
+
) -> ta.Optional[StandardConfiguredLoggingHandler]:
|
6753
6756
|
with _locking_logging_module_lock():
|
6754
6757
|
if target is None:
|
6755
6758
|
target = logging.root
|
@@ -6757,7 +6760,7 @@ def configure_standard_logging(
|
|
6757
6760
|
#
|
6758
6761
|
|
6759
6762
|
if not force:
|
6760
|
-
if any(isinstance(h,
|
6763
|
+
if any(isinstance(h, StandardConfiguredLoggingHandler) for h in list(target.handlers)):
|
6761
6764
|
return None
|
6762
6765
|
|
6763
6766
|
#
|
@@ -6771,14 +6774,14 @@ def configure_standard_logging(
|
|
6771
6774
|
|
6772
6775
|
formatter: logging.Formatter
|
6773
6776
|
if json:
|
6774
|
-
formatter =
|
6777
|
+
formatter = JsonLoggingFormatter()
|
6775
6778
|
else:
|
6776
|
-
formatter =
|
6779
|
+
formatter = StandardLoggingFormatter(StandardLoggingFormatter.build_log_format(STANDARD_LOG_FORMAT_PARTS))
|
6777
6780
|
handler.setFormatter(formatter)
|
6778
6781
|
|
6779
6782
|
#
|
6780
6783
|
|
6781
|
-
handler.addFilter(
|
6784
|
+
handler.addFilter(TidLoggingFilter())
|
6782
6785
|
|
6783
6786
|
#
|
6784
6787
|
|
@@ -6791,7 +6794,7 @@ def configure_standard_logging(
|
|
6791
6794
|
|
6792
6795
|
#
|
6793
6796
|
|
6794
|
-
return
|
6797
|
+
return StandardConfiguredLoggingHandler(handler)
|
6795
6798
|
|
6796
6799
|
|
6797
6800
|
########################################
|
@@ -8064,6 +8067,9 @@ TODO:
|
|
8064
8067
|
"""
|
8065
8068
|
|
8066
8069
|
|
8070
|
+
log = get_module_logger(globals()) # noqa
|
8071
|
+
|
8072
|
+
|
8067
8073
|
##
|
8068
8074
|
|
8069
8075
|
|
@@ -8653,6 +8659,9 @@ vcs+protocol://repo_url/#egg=pkg&subdirectory=pkg_dir
|
|
8653
8659
|
""" # noqa
|
8654
8660
|
|
8655
8661
|
|
8662
|
+
log = get_module_logger(globals()) # noqa
|
8663
|
+
|
8664
|
+
|
8656
8665
|
##
|
8657
8666
|
|
8658
8667
|
|
@@ -8941,7 +8950,7 @@ class PyprojectPackageGenerator(BasePyprojectPackageGenerator):
|
|
8941
8950
|
# '*.c',
|
8942
8951
|
# '*.cc',
|
8943
8952
|
# '*.h',
|
8944
|
-
# '.manifests.json',
|
8953
|
+
# '.omlish-manifests.json',
|
8945
8954
|
# 'LICENSE',
|
8946
8955
|
# ],
|
8947
8956
|
# }
|
@@ -9637,6 +9646,9 @@ class PyprojectConfigPreparer:
|
|
9637
9646
|
# ../venvs.py
|
9638
9647
|
|
9639
9648
|
|
9649
|
+
log = get_module_logger(globals()) # noqa
|
9650
|
+
|
9651
|
+
|
9640
9652
|
##
|
9641
9653
|
|
9642
9654
|
|
omdev/tools/json/processing.py
CHANGED
@@ -57,7 +57,7 @@ class Processor:
|
|
57
57
|
factory=self._marshaler_factory(),
|
58
58
|
).marshal(v)
|
59
59
|
|
60
|
-
def process(self, v: ta.Any) -> ta.
|
60
|
+
def process(self, v: ta.Any) -> ta.Iterator[ta.Any]:
|
61
61
|
if self._jmespath_expr is not None:
|
62
62
|
v = self._jmespath_expr.search(v)
|
63
63
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omdev
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev426
|
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.dev426
|
18
18
|
Provides-Extra: all
|
19
19
|
Requires-Dist: black~=25.1; extra == "all"
|
20
20
|
Requires-Dist: pycparser~=2.22; extra == "all"
|
@@ -1,8 +1,8 @@
|
|
1
|
-
omdev/.manifests.json,sha256=
|
1
|
+
omdev/.omlish-manifests.json,sha256=diaasURIGOs_kTukNgRFlaZ3Vq7kRGYLvOKAP5hqeMU,11909
|
2
2
|
omdev/__about__.py,sha256=fQNmzSa1MntcPSrzg_Vpo6JRU2RbXik2NqRz0oQCApE,1202
|
3
3
|
omdev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
omdev/cmake.py,sha256=gu49t10_syXh_TUJs4POsxeFs8we8Y3XTOOPgIXmGvg,4608
|
5
|
-
omdev/imgur.py,sha256=
|
5
|
+
omdev/imgur.py,sha256=oqei705LhSnLWQTOMHMHwRecRXcpSEP90Sg4SVINPQ0,3133
|
6
6
|
omdev/pip.py,sha256=PqzAWDO_CbiZvXzJAZcCkFqWynUDls1jIgBWlrswQyA,2012
|
7
7
|
omdev/tagstrings.py,sha256=cBmAc9-TtOBupvGQ9G4T1jjjtzijx4ihQCBu6FezzV0,5490
|
8
8
|
omdev/amalg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -74,9 +74,9 @@ omdev/cexts/_distutils/compilers/options.py,sha256=H7r5IcLvga5Fs3jjXWIT-6ap3JBdu
|
|
74
74
|
omdev/cexts/_distutils/compilers/unixccompiler.py,sha256=KO33tQYjgeRqvl0KOAD87tuChECPYYvJlpij440IE_4,15422
|
75
75
|
omdev/ci/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
76
76
|
omdev/ci/__main__.py,sha256=Jsrv3P7LX2Cg08W7ByZfZ1JQT4lgLDPW1qNAmShFuMk,75
|
77
|
-
omdev/ci/cache.py,sha256=
|
77
|
+
omdev/ci/cache.py,sha256=aKsNvl7fTJfjpFhUrWgKCNEwgoSfTZpEcn0NUY9BOCM,8456
|
78
78
|
omdev/ci/ci.py,sha256=ZCBQuX5fiyzgBLFndxh1To2J-KrjoPlw4EvEruDIdjg,7923
|
79
|
-
omdev/ci/cli.py,sha256=
|
79
|
+
omdev/ci/cli.py,sha256=jmvG-xTm97pRtoqtaF6qru4Cros-3e4r6q3h_V0XNoY,7256
|
80
80
|
omdev/ci/compose.py,sha256=SXjWuHuLN9NQttvnJ440A88VI7JPU0sSaQhfWe_-IKs,4518
|
81
81
|
omdev/ci/consts.py,sha256=HkSYz-_hHilcHPBvRs-SwcUxW7vMNlHXZ8OyIKnVQbQ,21
|
82
82
|
omdev/ci/inject.py,sha256=Yk7bT7sRC76PUN9qQ07MiveAuQmi1LZBKxah7VKOB5Q,1930
|
@@ -90,11 +90,11 @@ omdev/ci/docker/cmds.py,sha256=1aSLQqbMJpdAMskxfeGI-he5Amb910RWvo2DE6ZgID8,3067
|
|
90
90
|
omdev/ci/docker/dataserver.py,sha256=v5q5z0HaGMMSbDhh7xsGePwBfmkn-dL8b2JVotbMVRs,5880
|
91
91
|
omdev/ci/docker/imagepulling.py,sha256=Ut-qE7nmuCxNw5l_LpeJdCcu9f7MCX_KuEFyFkBYMd0,1875
|
92
92
|
omdev/ci/docker/inject.py,sha256=vlWoIJHx2hzCai4wWspIcWnR3WhZ2bsOjq7fqq0qozE,2006
|
93
|
-
omdev/ci/docker/packing.py,sha256=
|
93
|
+
omdev/ci/docker/packing.py,sha256=ePvHU6rtMh7fq8Ijethuw8eCfjOTi-xhzBQbLSk7M0A,2021
|
94
94
|
omdev/ci/docker/repositories.py,sha256=-uNB93u3pOxsOeib4xovixtbhwGhFWVfxQ00V8Yy89Y,1278
|
95
95
|
omdev/ci/docker/utils.py,sha256=7Tobiq2hMxicGpQfTkDoU7oTa8Tyw47LpDh8C554LLs,1135
|
96
96
|
omdev/ci/docker/cacheserved/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
|
-
omdev/ci/docker/cacheserved/cache.py,sha256=
|
97
|
+
omdev/ci/docker/cacheserved/cache.py,sha256=T6V2e7aSZ0lTnldLln3YDPPcQE9JRQhSmsGJf9GB0bk,7087
|
98
98
|
omdev/ci/docker/cacheserved/manifests.py,sha256=-T-KLDTLJ-HvcDn6E2tHc2B6KZQjW5Ev8lvNCcx9aHw,3614
|
99
99
|
omdev/ci/github/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
100
|
omdev/ci/github/bootstrap.py,sha256=yZnZVkz9bKCo5G7n-jRQFP8XR76yyuF1BVaTsmUpHdI,441
|
@@ -103,14 +103,14 @@ omdev/ci/github/cli.py,sha256=gvDz4Rd9Arw0VIptfbEVJG97kTuypYNdWGvODrjhA84,1132
|
|
103
103
|
omdev/ci/github/env.py,sha256=HQOUPvKHNmHUkX7WjoStiLPLq_yGwR09jbZQJhmkKPs,405
|
104
104
|
omdev/ci/github/inject.py,sha256=fxyjSiMhSCPKpYX-W6DM4b7QxKEBgkQ-AmZG6f9xgac,564
|
105
105
|
omdev/ci/github/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
|
-
omdev/ci/github/api/clients.py,sha256=
|
106
|
+
omdev/ci/github/api/clients.py,sha256=BKZL7nTkH917U8dknSB3ZH7D4kVjk_Ow805wTor_oPs,13612
|
107
107
|
omdev/ci/github/api/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
108
108
|
omdev/ci/github/api/v1/api.py,sha256=KPmPAiCKEGwz4busb9Ig1n2f_CIqqWb7E-9CZANxtSc,3199
|
109
|
-
omdev/ci/github/api/v1/client.py,sha256=
|
109
|
+
omdev/ci/github/api/v1/client.py,sha256=sc_xj3H_Nuh4CluZlQNLctdfFMa0EEck681VZBXo7Zg,5045
|
110
110
|
omdev/ci/github/api/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
111
|
omdev/ci/github/api/v2/api.py,sha256=k7yn1ln1oBxFA9XC72bYUc_zZUIx4tSSF4-HZv9iK5g,3969
|
112
|
-
omdev/ci/github/api/v2/azure.py,sha256=
|
113
|
-
omdev/ci/github/api/v2/client.py,sha256=
|
112
|
+
omdev/ci/github/api/v2/azure.py,sha256=Dp0HzCXgaHQzWKPIctXKT_8mvBUnhLUG5nyebVVuFZI,5530
|
113
|
+
omdev/ci/github/api/v2/client.py,sha256=XuEAR46tNFZpGRPIPFgdpwTA10mC89wwj-X035Qi508,6416
|
114
114
|
omdev/cli/__init__.py,sha256=V_l6VP1SZMlJbO-8CJwSuO9TThOy2S_oaPepNYgIrbE,37
|
115
115
|
omdev/cli/__main__.py,sha256=mOJpgc07o0r5luQ1DlX4tk2PqZkgmbwPbdzJ3KmtjgQ,138
|
116
116
|
omdev/cli/_pathhack.py,sha256=ABWxtuMY29WBOPqC-4LAZK9S9PwGY3zn5aK6HavFPh0,2125
|
@@ -164,7 +164,7 @@ omdev/interp/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
164
164
|
omdev/interp/providers/base.py,sha256=zMtzMJIDvaI0q1gtsZTCvFiTc7qdhGbUcXRs6LCBmgo,1333
|
165
165
|
omdev/interp/providers/inject.py,sha256=NSDFBQVD3ZR9Mf162XB9_VvTUAXGCRhPcrjVlYcFDJk,857
|
166
166
|
omdev/interp/providers/running.py,sha256=M3Ni41f-iHRVEySyxogensOfh1RkONQ91kIMrfurY_M,786
|
167
|
-
omdev/interp/providers/standalone.py,sha256
|
167
|
+
omdev/interp/providers/standalone.py,sha256=-aAXbuixpUGmjX3e-Cw8vZErgKcSPkjwdk8DOr6RQ-4,7798
|
168
168
|
omdev/interp/providers/system.py,sha256=Lld7a-SZR9tELHxczm72gOYhjETM5nsz8r4l32y03vw,3991
|
169
169
|
omdev/interp/pyenv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
170
170
|
omdev/interp/pyenv/inject.py,sha256=Qj9nCnZn0eZMOx1jNAYi5f2RlIy8SHmN3maPK1ZDWwo,616
|
@@ -184,8 +184,8 @@ omdev/magic/prepare.py,sha256=SEOK-bl4zDxq0aphYXsEI-hCjbkV908VNnJt-dk0kL4,594
|
|
184
184
|
omdev/magic/styles.py,sha256=6LAL7XR3fkkH2rh-8nwUvdCYVHBkQxCfP0oEuPuw1Bg,670
|
185
185
|
omdev/manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
186
186
|
omdev/manifests/__main__.py,sha256=JqyVDyV7_jo-NZ3wSs5clDU_xCMlxzJv-XFohoZWQ7E,174
|
187
|
-
omdev/manifests/_dumping.py,sha256=
|
188
|
-
omdev/manifests/building.py,sha256=
|
187
|
+
omdev/manifests/_dumping.py,sha256=H0nFCPDg8ooiDFKv435XcW3iz-j9sd2hz-klt9K_DeA,52553
|
188
|
+
omdev/manifests/building.py,sha256=M3IHQljk0ca0J32-xNTOcFVvW07s_7fHQ7sGsCJeurU,13908
|
189
189
|
omdev/manifests/dumping.py,sha256=WUIZDvOyO25AhnCPn5Nxj2OkMcZa1LRjGuCnpyx8AL8,4506
|
190
190
|
omdev/manifests/main.py,sha256=mYb8iM5bdwaO8jSd9_hIBSoYLf2h7e0iLb9aCCbgJ6c,2175
|
191
191
|
omdev/mypy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -209,7 +209,7 @@ omdev/packaging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
209
|
omdev/packaging/marshal.py,sha256=nr7wN-Pi3FGAuh3HaladzDgOgyQl1-vtmxJ_AUOo4d8,2355
|
210
210
|
omdev/packaging/names.py,sha256=-orp16m20gSFeKRiGkRNyqFVV4S1y_Djvjdq_5hNwpY,2533
|
211
211
|
omdev/packaging/requires.py,sha256=rgEeJh8shqnFCPBtG_3Tu0vASXsvwK26ikJauFcrz0I,15691
|
212
|
-
omdev/packaging/revisions.py,sha256=
|
212
|
+
omdev/packaging/revisions.py,sha256=tLNDVtPiygB8mSxwp-kDxeEHhpBzD0jayndjsgUOfkM,5055
|
213
213
|
omdev/packaging/specifiers.py,sha256=ooNtc5gJM6d7EnltVFbWs00QfLMNvbgD2M8kguPtpcY,17455
|
214
214
|
omdev/packaging/versions.py,sha256=aaB9zKTBCpILIsz6YRJLrmGoGv4gqyhsAFfZ6blye2A,12267
|
215
215
|
omdev/packaging/wheelfile.py,sha256=xv-VpLwhgj1UKounbawAOtkJENRvkJJaHSjD4_zZz_o,10016
|
@@ -237,9 +237,9 @@ omdev/ptk/markdown/markdown.py,sha256=wRxCWSV2u71NP_MTi8A8vVLjZ1TmmaWUZMnvW468Ej
|
|
237
237
|
omdev/ptk/markdown/parser.py,sha256=UppwouvAYh3qzQMKL-BjcyqBIl2KHcocXlWiKFZ7cBA,990
|
238
238
|
omdev/ptk/markdown/styles.py,sha256=lc17zooXhff5_2tkqLsCmdq2b_rfSAehmHVR-8Lo2qk,777
|
239
239
|
omdev/ptk/markdown/tags.py,sha256=6wF9lbqbpf_WCxEJ_tJP_QtaDCcQKCKYS1CMzHTQg2U,7020
|
240
|
-
omdev/ptk/markdown/utils.py,sha256=
|
240
|
+
omdev/ptk/markdown/utils.py,sha256=lApIIK_n9dgLaC9mHKJf8O8VPrYRHO9qjFON_mqXv1Y,10513
|
241
241
|
omdev/py/__init__.py,sha256=u7tLEfRTnPVtWPmKK_ZIvnFkZwTe1q44UQ53cvsix3k,41
|
242
|
-
omdev/py/attrdocs.py,sha256=
|
242
|
+
omdev/py/attrdocs.py,sha256=Vp9TVMoINTQ_yIM3HB0hcu7owIm2xOztN0WewI4tlrQ,5170
|
243
243
|
omdev/py/bracepy.py,sha256=tcZaljRkSsFYMewb1FULHet5HxV6GGqgbmLhlIGqdCw,2742
|
244
244
|
omdev/py/classdot.py,sha256=7WVaVio1Q2B92bvVbXVNAubSkce8Zm-UbleBvXhc0IM,1655
|
245
245
|
omdev/py/findimports.py,sha256=UPnBzPUwGrmakZ0RhaJdO3TNBQVk7IUREEqmIvsSxb0,4235
|
@@ -250,7 +250,7 @@ omdev/py/docstrings/attrdoc.py,sha256=xo-AFqEPfz1XppsCMJS80pG1Vdd2TiBsoxZ7YP6ZHC
|
|
250
250
|
omdev/py/docstrings/common.py,sha256=7YUu5-RxhbCEKHMvfUNxXhTd9lcGTC8CGAmWeXZTta4,6378
|
251
251
|
omdev/py/docstrings/epydoc.py,sha256=Z6Dg6ImKOY3hP-mZoiwU3nGOReap5vt_T_3LIGnpess,6177
|
252
252
|
omdev/py/docstrings/google.py,sha256=zWrhzQ_QGOtH6s9SfmZGCduKv3JJVe6rJlDe-kAdUW8,10552
|
253
|
-
omdev/py/docstrings/numpydoc.py,sha256=
|
253
|
+
omdev/py/docstrings/numpydoc.py,sha256=JxAzfoZDYHf7j6nAOzQHQ89RBm0lpSc5NIgJgJGI-qQ,12266
|
254
254
|
omdev/py/docstrings/parser.py,sha256=umJEgQBkSXLwWIKZrBbFCfNrz847vpTNDqTTEwlvHpA,2324
|
255
255
|
omdev/py/docstrings/rest.py,sha256=c2xPYg_W01W9eYY_KLKX69E4qu4jpkgUshi5K5EyVv8,5221
|
256
256
|
omdev/py/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -259,23 +259,23 @@ omdev/py/scripts/execstat.py,sha256=-c5ioQRruBrD5M0QDzSMaaq4Oe3X3-1O_d63bXjE5EI,
|
|
259
259
|
omdev/py/scripts/importtrace.py,sha256=OOf9GvB6PWP2uVzogSYsM5JGUAoSfMx1IKfYUXB8ABc,14245
|
260
260
|
omdev/py/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
261
261
|
omdev/py/tools/importscan.py,sha256=4dCH0coX0OqNwesteKaTE8GxuSfLhgXYQlzNUXLiSNY,4640
|
262
|
-
omdev/py/tools/mkrelimp.py,sha256=
|
262
|
+
omdev/py/tools/mkrelimp.py,sha256=F7g6Cesdb4MPz1EKiN1iQpqOUUwTNQAVEQZhK0l-yhc,4049
|
263
263
|
omdev/pyproject/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
264
264
|
omdev/pyproject/__main__.py,sha256=gn3Rl1aYPYdiTtEqa9ifi0t-e4ZwPY0vhJ4UXvYdJDY,165
|
265
265
|
omdev/pyproject/cexts.py,sha256=GLD4fe61M_fHhdMcKlcQNUoCb7MeVXY6Fw-grKH4hTU,4264
|
266
266
|
omdev/pyproject/cli.py,sha256=Umsu2bcJUYeeVXICaZFhKckUBT6VWuYDL4htgCGGQIs,8749
|
267
267
|
omdev/pyproject/configs.py,sha256=baNRwHtUW8S8DKCxuKlMbV3Gduujd1PyNURxQ48Nnxk,2813
|
268
268
|
omdev/pyproject/inject.py,sha256=Von8_8ofkITLoCEwDHNRAwY0AEdFQg7r2ILS8kcTMuY,325
|
269
|
-
omdev/pyproject/pkg.py,sha256=
|
270
|
-
omdev/pyproject/reqs.py,sha256=
|
271
|
-
omdev/pyproject/venvs.py,sha256=
|
269
|
+
omdev/pyproject/pkg.py,sha256=CcWBhsOgim8MYe5ryKDGB8ClRIyiCX6YmYUHRbQ5q_Y,14964
|
270
|
+
omdev/pyproject/reqs.py,sha256=LrGr393-yqKbd2K_D-NePrvUIhMDjPG_1cEyQ3qesAM,2480
|
271
|
+
omdev/pyproject/venvs.py,sha256=4JIAlNGWNHm4U9OgqG2f1fNwbqEJgQc34bhp9_46MT0,1980
|
272
272
|
omdev/pyproject/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
273
273
|
omdev/pyproject/resources/docker-dev.sh,sha256=DHkz5D18jok_oDolfg2mqrvGRWFoCe9GQo04dR1czcc,838
|
274
274
|
omdev/pyproject/resources/python.sh,sha256=rFaN4SiJ9hdLDXXsDTwugI6zsw6EPkgYMmtacZeTbvw,749
|
275
275
|
omdev/scripts/__init__.py,sha256=MKCvUAEQwsIvwLixwtPlpBqmkMXLCnjjXyAXvVpDwVk,91
|
276
|
-
omdev/scripts/ci.py,sha256=
|
277
|
-
omdev/scripts/interp.py,sha256=
|
278
|
-
omdev/scripts/pyproject.py,sha256=
|
276
|
+
omdev/scripts/ci.py,sha256=pqXYqxt3d-N2a3CoOuVIeINjngbuHzLoZ06H7_bZu4Y,374828
|
277
|
+
omdev/scripts/interp.py,sha256=3rQWxkZiDgufJ1NBjGAZ4gwaDvOJyFT4aXoueKNuOxQ,162480
|
278
|
+
omdev/scripts/pyproject.py,sha256=ICrAsMoBtK_8KtQwnbJbVMoOPL7GkhG1aKqgZWQEG8c,278971
|
279
279
|
omdev/scripts/slowcat.py,sha256=PwdT-pg62imEEb6kcOozl9_YUi-4KopvjvzWT1OmGb0,2717
|
280
280
|
omdev/scripts/tmpexec.py,sha256=t0nErDRALjTk7H0X8ADjZUIDFjlPNzOOokmjCjBHdzs,1431
|
281
281
|
omdev/tokens/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -296,11 +296,6 @@ omdev/tools/qr.py,sha256=1p4tMJmImDa4YTQQNPwQPkM8FnhGRYj6J79BJR-MNHo,1742
|
|
296
296
|
omdev/tools/shadow.py,sha256=4E2ilxa16liIvQxvgU37ITkOMrP6ufShRQfeW7wwtRc,1697
|
297
297
|
omdev/tools/shell.py,sha256=5hF_8DCtB3XrzJSfmQDsr7X3Fi9KRV4M70q9qp0KREA,2341
|
298
298
|
omdev/tools/sqlrepl.py,sha256=TcLJlElzfXqYUkfIOwhJHtXiQjXOg4xBTwSoSRDpNkg,5758
|
299
|
-
omdev/tools/antlr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
300
|
-
omdev/tools/antlr/__main__.py,sha256=7db8YIfCp4GoU-lW7jJJDiLQ6dDrd25M7gUv1AHGj4w,170
|
301
|
-
omdev/tools/antlr/cli.py,sha256=QeO5vSUJDL43lAa2EYsLnN-jZBcNOTwB1C9Ua_h7qoA,1228
|
302
|
-
omdev/tools/antlr/consts.py,sha256=4xH4jyNE5czXRWCn65jFF0MrAodMPe_kYMWpgMxWmpo,289
|
303
|
-
omdev/tools/antlr/gen.py,sha256=spYfyfX_r_1YT4uZ_bEhtGwANenUtZvSOFck5eiNHhQ,5122
|
304
299
|
omdev/tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
305
300
|
omdev/tools/git/__main__.py,sha256=gI87SBUgTkKUcUM-RtZWnei-UUDDqzbr5aPztb-gvbE,168
|
306
301
|
omdev/tools/git/cli.py,sha256=I4AiCTz4OCzK6s8J2TJF1eYw9FH2JIK_CsdjQH_9UTE,16757
|
@@ -313,7 +308,7 @@ omdev/tools/json/cli.py,sha256=8aXX3ijU3lvPZamkIyUOz-vlBmyIdaX7dCQq5rN7adE,10193
|
|
313
308
|
omdev/tools/json/formats.py,sha256=1qGYb8Kq_yFpLMaecBg-XE3yWSvqRiRbBX8SAElpS9s,2643
|
314
309
|
omdev/tools/json/io.py,sha256=sfj2hJS9Hy3aUR8a_lLzOrYcmL9fSKyvOHiofdUASsI,1427
|
315
310
|
omdev/tools/json/parsing.py,sha256=xZiOH3jSVErNGKI8AysFf0zzyhivXvRakTQe7rWxhKQ,2052
|
316
|
-
omdev/tools/json/processing.py,sha256=
|
311
|
+
omdev/tools/json/processing.py,sha256=jMSkTmIccdVkT_Q6Jf8Q4AG4BQecQfrp8G2bEtsklg8,2387
|
317
312
|
omdev/tools/json/rendering.py,sha256=TXNP8KBWN-zT2nx0_LArdd6Wmff550hw-RyuB4Ydcjc,2661
|
318
313
|
omdev/tools/jsonview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
319
314
|
omdev/tools/jsonview/__main__.py,sha256=BF-MVWpPJJeQYUqJA48G395kxw0lEJnV-hRLV_F9G2A,173
|
@@ -324,9 +319,9 @@ omdev/tools/jsonview/resources/jsonview.js,sha256=faDvXDOXKvEvjOuIlz4D3F2ReQXb_b
|
|
324
319
|
omdev/tools/pawk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
325
320
|
omdev/tools/pawk/__main__.py,sha256=VCqeRVnqT1RPEoIrqHFSu4PXVMg4YEgF4qCQm90-eRI,66
|
326
321
|
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.
|
322
|
+
omdev-0.0.0.dev426.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
323
|
+
omdev-0.0.0.dev426.dist-info/METADATA,sha256=bwgToHy-W1XPH24LhesMVzVqCdhIHz0bj7sEIU0talU,5100
|
324
|
+
omdev-0.0.0.dev426.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
325
|
+
omdev-0.0.0.dev426.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
|
326
|
+
omdev-0.0.0.dev426.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
|
327
|
+
omdev-0.0.0.dev426.dist-info/RECORD,,
|
omdev/tools/antlr/__init__.py
DELETED
File without changes
|