omdev 0.0.0.dev102__py3-none-any.whl → 0.0.0.dev104__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.
Potentially problematic release.
This version of omdev might be problematic. Click here for more details.
- omdev/.manifests.json +2 -2
- omdev/ptk/apps/ncdu.py +4 -6
- omdev/scripts/execrss.py +11 -1
- omdev/scripts/exectime.py +11 -1
- omdev/scripts/interp.py +24 -2
- omdev/scripts/pyproject.py +93 -30
- omdev/tools/git.py +36 -32
- {omdev-0.0.0.dev102.dist-info → omdev-0.0.0.dev104.dist-info}/METADATA +2 -2
- {omdev-0.0.0.dev102.dist-info → omdev-0.0.0.dev104.dist-info}/RECORD +13 -13
- {omdev-0.0.0.dev102.dist-info → omdev-0.0.0.dev104.dist-info}/LICENSE +0 -0
- {omdev-0.0.0.dev102.dist-info → omdev-0.0.0.dev104.dist-info}/WHEEL +0 -0
- {omdev-0.0.0.dev102.dist-info → omdev-0.0.0.dev104.dist-info}/entry_points.txt +0 -0
- {omdev-0.0.0.dev102.dist-info → omdev-0.0.0.dev104.dist-info}/top_level.txt +0 -0
omdev/.manifests.json
CHANGED
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"module": ".ptk.apps.ncdu",
|
|
124
124
|
"attr": "_CLI_MODULE",
|
|
125
125
|
"file": "omdev/ptk/apps/ncdu.py",
|
|
126
|
-
"line":
|
|
126
|
+
"line": 155,
|
|
127
127
|
"value": {
|
|
128
128
|
"$.cli.types.CliModule": {
|
|
129
129
|
"cmd_name": "ptk/ncdu",
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
"module": ".tools.git",
|
|
220
220
|
"attr": "_CLI_MODULE",
|
|
221
221
|
"file": "omdev/tools/git.py",
|
|
222
|
-
"line":
|
|
222
|
+
"line": 128,
|
|
223
223
|
"value": {
|
|
224
224
|
"$.cli.types.CliModule": {
|
|
225
225
|
"cmd_name": "git",
|
omdev/ptk/apps/ncdu.py
CHANGED
|
@@ -69,12 +69,10 @@ class NcduApp:
|
|
|
69
69
|
|
|
70
70
|
self._kb = ptk.KeyBindings()
|
|
71
71
|
self._kb.add('q')(self.exit_app)
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
self._kb.add('enter')(self.enter_directory)
|
|
77
|
-
self._kb.add('backspace')(self.go_back)
|
|
72
|
+
self._kb.add('up', 'p')(self.move_up)
|
|
73
|
+
self._kb.add('down', 'n')(self.move_down)
|
|
74
|
+
self._kb.add('right', 'enter')(self.enter_directory)
|
|
75
|
+
self._kb.add('left', 'backspace')(self.go_back)
|
|
78
76
|
|
|
79
77
|
self._layout = ptk.Layout(ptk.Frame(self._text_area))
|
|
80
78
|
|
omdev/scripts/execrss.py
CHANGED
|
@@ -16,7 +16,17 @@ _CLI_MODULE = {'$omdev.cli.types.CliModule': {
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
def _main() -> None:
|
|
19
|
-
|
|
19
|
+
if len(sys.argv) == 2:
|
|
20
|
+
pre = None
|
|
21
|
+
[src] = sys.argv[1:]
|
|
22
|
+
elif len(sys.argv) == 3:
|
|
23
|
+
[pre, src] = sys.argv[1:]
|
|
24
|
+
else:
|
|
25
|
+
raise Exception('Invalid arguments')
|
|
26
|
+
|
|
27
|
+
if pre:
|
|
28
|
+
exec(pre)
|
|
29
|
+
|
|
20
30
|
start = _get_rss()
|
|
21
31
|
exec(src)
|
|
22
32
|
end = _get_rss()
|
omdev/scripts/exectime.py
CHANGED
|
@@ -12,7 +12,17 @@ _CLI_MODULE = {'$omdev.cli.types.CliModule': {
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def _main() -> None:
|
|
15
|
-
|
|
15
|
+
if len(sys.argv) == 2:
|
|
16
|
+
pre = None
|
|
17
|
+
[src] = sys.argv[1:]
|
|
18
|
+
elif len(sys.argv) == 3:
|
|
19
|
+
[pre, src] = sys.argv[1:]
|
|
20
|
+
else:
|
|
21
|
+
raise Exception('Invalid arguments')
|
|
22
|
+
|
|
23
|
+
if pre:
|
|
24
|
+
exec(pre)
|
|
25
|
+
|
|
16
26
|
co = compile(src, '<string>', 'exec')
|
|
17
27
|
start = time.time_ns()
|
|
18
28
|
exec(co)
|
omdev/scripts/interp.py
CHANGED
|
@@ -51,7 +51,7 @@ VersionCmpLocalType = ta.Union['NegativeInfinityVersionType', _VersionCmpLocalTy
|
|
|
51
51
|
VersionCmpKey = ta.Tuple[int, ta.Tuple[int, ...], VersionCmpPrePostDevType, VersionCmpPrePostDevType, VersionCmpPrePostDevType, VersionCmpLocalType] # noqa
|
|
52
52
|
VersionComparisonMethod = ta.Callable[[VersionCmpKey, VersionCmpKey], bool]
|
|
53
53
|
|
|
54
|
-
# ../../../omlish/lite/
|
|
54
|
+
# ../../../omlish/lite/cached.py
|
|
55
55
|
T = ta.TypeVar('T')
|
|
56
56
|
|
|
57
57
|
# ../../packaging/specifiers.py
|
|
@@ -471,7 +471,7 @@ def canonicalize_version(
|
|
|
471
471
|
# ../../../omlish/lite/cached.py
|
|
472
472
|
|
|
473
473
|
|
|
474
|
-
class
|
|
474
|
+
class _cached_nullary: # noqa
|
|
475
475
|
def __init__(self, fn):
|
|
476
476
|
super().__init__()
|
|
477
477
|
self._fn = fn
|
|
@@ -488,6 +488,10 @@ class cached_nullary: # noqa
|
|
|
488
488
|
return bound
|
|
489
489
|
|
|
490
490
|
|
|
491
|
+
def cached_nullary(fn: ta.Callable[..., T]) -> ta.Callable[..., T]:
|
|
492
|
+
return _cached_nullary(fn)
|
|
493
|
+
|
|
494
|
+
|
|
491
495
|
########################################
|
|
492
496
|
# ../../../omlish/lite/check.py
|
|
493
497
|
|
|
@@ -1692,6 +1696,24 @@ def subprocess_try_output_str(*args: str, **kwargs: ta.Any) -> ta.Optional[str]:
|
|
|
1692
1696
|
return out.decode().strip() if out is not None else None
|
|
1693
1697
|
|
|
1694
1698
|
|
|
1699
|
+
##
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
def subprocess_close(
|
|
1703
|
+
proc: subprocess.Popen,
|
|
1704
|
+
timeout: ta.Optional[float] = None,
|
|
1705
|
+
) -> None:
|
|
1706
|
+
# TODO: terminate, sleep, kill
|
|
1707
|
+
if proc.stdout:
|
|
1708
|
+
proc.stdout.close()
|
|
1709
|
+
if proc.stderr:
|
|
1710
|
+
proc.stderr.close()
|
|
1711
|
+
if proc.stdin:
|
|
1712
|
+
proc.stdin.close()
|
|
1713
|
+
|
|
1714
|
+
proc.wait(timeout)
|
|
1715
|
+
|
|
1716
|
+
|
|
1695
1717
|
########################################
|
|
1696
1718
|
# ../inspect.py
|
|
1697
1719
|
|
omdev/scripts/pyproject.py
CHANGED
|
@@ -90,7 +90,7 @@ TomlParseFloat = ta.Callable[[str], ta.Any]
|
|
|
90
90
|
TomlKey = ta.Tuple[str, ...]
|
|
91
91
|
TomlPos = int # ta.TypeAlias
|
|
92
92
|
|
|
93
|
-
# ../../../omlish/lite/
|
|
93
|
+
# ../../../omlish/lite/cached.py
|
|
94
94
|
T = ta.TypeVar('T')
|
|
95
95
|
|
|
96
96
|
# ../../packaging/specifiers.py
|
|
@@ -1862,7 +1862,7 @@ class WheelFile(zipfile.ZipFile):
|
|
|
1862
1862
|
# ../../../omlish/lite/cached.py
|
|
1863
1863
|
|
|
1864
1864
|
|
|
1865
|
-
class
|
|
1865
|
+
class _cached_nullary: # noqa
|
|
1866
1866
|
def __init__(self, fn):
|
|
1867
1867
|
super().__init__()
|
|
1868
1868
|
self._fn = fn
|
|
@@ -1879,6 +1879,10 @@ class cached_nullary: # noqa
|
|
|
1879
1879
|
return bound
|
|
1880
1880
|
|
|
1881
1881
|
|
|
1882
|
+
def cached_nullary(fn: ta.Callable[..., T]) -> ta.Callable[..., T]:
|
|
1883
|
+
return _cached_nullary(fn)
|
|
1884
|
+
|
|
1885
|
+
|
|
1882
1886
|
########################################
|
|
1883
1887
|
# ../../../omlish/lite/check.py
|
|
1884
1888
|
|
|
@@ -3235,7 +3239,7 @@ class DataclassObjMarshaler(ObjMarshaler):
|
|
|
3235
3239
|
return {k: m.marshal(getattr(o, k)) for k, m in self.fs.items()}
|
|
3236
3240
|
|
|
3237
3241
|
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3238
|
-
return self.ty(**{k: self.fs[k].unmarshal(v) for k, v in o.items() if self.nonstrict or k in self.fs})
|
|
3242
|
+
return self.ty(**{k: self.fs[k].unmarshal(v) for k, v in o.items() if not self.nonstrict or k in self.fs})
|
|
3239
3243
|
|
|
3240
3244
|
|
|
3241
3245
|
@dc.dataclass(frozen=True)
|
|
@@ -3295,7 +3299,10 @@ class UuidObjMarshaler(ObjMarshaler):
|
|
|
3295
3299
|
return uuid.UUID(o)
|
|
3296
3300
|
|
|
3297
3301
|
|
|
3298
|
-
|
|
3302
|
+
##
|
|
3303
|
+
|
|
3304
|
+
|
|
3305
|
+
_DEFAULT_OBJ_MARSHALERS: ta.Dict[ta.Any, ObjMarshaler] = {
|
|
3299
3306
|
**{t: NopObjMarshaler() for t in (type(None),)},
|
|
3300
3307
|
**{t: CastObjMarshaler(t) for t in (int, float, str, bool)},
|
|
3301
3308
|
**{t: Base64ObjMarshaler(t) for t in (bytes, bytearray)},
|
|
@@ -3324,20 +3331,19 @@ _OBJ_MARSHALER_GENERIC_ITERABLE_TYPES: ta.Dict[ta.Any, type] = {
|
|
|
3324
3331
|
}
|
|
3325
3332
|
|
|
3326
3333
|
|
|
3327
|
-
def
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
def _make_obj_marshaler(ty: ta.Any) -> ObjMarshaler:
|
|
3334
|
+
def _make_obj_marshaler(
|
|
3335
|
+
ty: ta.Any,
|
|
3336
|
+
rec: ta.Callable[[ta.Any], ObjMarshaler],
|
|
3337
|
+
*,
|
|
3338
|
+
nonstrict_dataclasses: bool = False,
|
|
3339
|
+
) -> ObjMarshaler:
|
|
3334
3340
|
if isinstance(ty, type):
|
|
3335
3341
|
if abc.ABC in ty.__bases__:
|
|
3336
3342
|
impls = [ # type: ignore
|
|
3337
3343
|
PolymorphicObjMarshaler.Impl(
|
|
3338
3344
|
ity,
|
|
3339
3345
|
ity.__qualname__,
|
|
3340
|
-
|
|
3346
|
+
rec(ity),
|
|
3341
3347
|
)
|
|
3342
3348
|
for ity in deep_subclasses(ty)
|
|
3343
3349
|
if abc.ABC not in ity.__bases__
|
|
@@ -3353,7 +3359,8 @@ def _make_obj_marshaler(ty: ta.Any) -> ObjMarshaler:
|
|
|
3353
3359
|
if dc.is_dataclass(ty):
|
|
3354
3360
|
return DataclassObjMarshaler(
|
|
3355
3361
|
ty,
|
|
3356
|
-
{f.name:
|
|
3362
|
+
{f.name: rec(f.type) for f in dc.fields(ty)},
|
|
3363
|
+
nonstrict=nonstrict_dataclasses,
|
|
3357
3364
|
)
|
|
3358
3365
|
|
|
3359
3366
|
if is_generic_alias(ty):
|
|
@@ -3363,7 +3370,7 @@ def _make_obj_marshaler(ty: ta.Any) -> ObjMarshaler:
|
|
|
3363
3370
|
pass
|
|
3364
3371
|
else:
|
|
3365
3372
|
k, v = ta.get_args(ty)
|
|
3366
|
-
return MappingObjMarshaler(mt,
|
|
3373
|
+
return MappingObjMarshaler(mt, rec(k), rec(v))
|
|
3367
3374
|
|
|
3368
3375
|
try:
|
|
3369
3376
|
st = _OBJ_MARSHALER_GENERIC_ITERABLE_TYPES[ta.get_origin(ty)]
|
|
@@ -3371,33 +3378,71 @@ def _make_obj_marshaler(ty: ta.Any) -> ObjMarshaler:
|
|
|
3371
3378
|
pass
|
|
3372
3379
|
else:
|
|
3373
3380
|
[e] = ta.get_args(ty)
|
|
3374
|
-
return IterableObjMarshaler(st,
|
|
3381
|
+
return IterableObjMarshaler(st, rec(e))
|
|
3375
3382
|
|
|
3376
3383
|
if is_union_alias(ty):
|
|
3377
|
-
return OptionalObjMarshaler(
|
|
3384
|
+
return OptionalObjMarshaler(rec(get_optional_alias_arg(ty)))
|
|
3378
3385
|
|
|
3379
3386
|
raise TypeError(ty)
|
|
3380
3387
|
|
|
3381
3388
|
|
|
3382
|
-
|
|
3383
|
-
try:
|
|
3384
|
-
return _OBJ_MARSHALERS[ty]
|
|
3385
|
-
except KeyError:
|
|
3386
|
-
pass
|
|
3389
|
+
##
|
|
3387
3390
|
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3391
|
+
|
|
3392
|
+
_OBJ_MARSHALERS_LOCK = threading.RLock()
|
|
3393
|
+
|
|
3394
|
+
_OBJ_MARSHALERS: ta.Dict[ta.Any, ObjMarshaler] = dict(_DEFAULT_OBJ_MARSHALERS)
|
|
3395
|
+
|
|
3396
|
+
_OBJ_MARSHALER_PROXIES: ta.Dict[ta.Any, ProxyObjMarshaler] = {}
|
|
3397
|
+
|
|
3398
|
+
|
|
3399
|
+
def register_opj_marshaler(ty: ta.Any, m: ObjMarshaler) -> None:
|
|
3400
|
+
with _OBJ_MARSHALERS_LOCK:
|
|
3401
|
+
if ty in _OBJ_MARSHALERS:
|
|
3402
|
+
raise KeyError(ty)
|
|
3397
3403
|
_OBJ_MARSHALERS[ty] = m
|
|
3404
|
+
|
|
3405
|
+
|
|
3406
|
+
def get_obj_marshaler(
|
|
3407
|
+
ty: ta.Any,
|
|
3408
|
+
*,
|
|
3409
|
+
no_cache: bool = False,
|
|
3410
|
+
**kwargs: ta.Any,
|
|
3411
|
+
) -> ObjMarshaler:
|
|
3412
|
+
with _OBJ_MARSHALERS_LOCK:
|
|
3413
|
+
if not no_cache:
|
|
3414
|
+
try:
|
|
3415
|
+
return _OBJ_MARSHALERS[ty]
|
|
3416
|
+
except KeyError:
|
|
3417
|
+
pass
|
|
3418
|
+
|
|
3419
|
+
try:
|
|
3420
|
+
return _OBJ_MARSHALER_PROXIES[ty]
|
|
3421
|
+
except KeyError:
|
|
3422
|
+
pass
|
|
3423
|
+
|
|
3424
|
+
rec = functools.partial(
|
|
3425
|
+
get_obj_marshaler,
|
|
3426
|
+
no_cache=no_cache,
|
|
3427
|
+
**kwargs,
|
|
3428
|
+
)
|
|
3429
|
+
|
|
3430
|
+
p = ProxyObjMarshaler()
|
|
3431
|
+
_OBJ_MARSHALER_PROXIES[ty] = p
|
|
3432
|
+
try:
|
|
3433
|
+
m = _make_obj_marshaler(ty, rec, **kwargs)
|
|
3434
|
+
finally:
|
|
3435
|
+
del _OBJ_MARSHALER_PROXIES[ty]
|
|
3436
|
+
p.m = m
|
|
3437
|
+
|
|
3438
|
+
if not no_cache:
|
|
3439
|
+
_OBJ_MARSHALERS[ty] = m
|
|
3398
3440
|
return m
|
|
3399
3441
|
|
|
3400
3442
|
|
|
3443
|
+
##
|
|
3444
|
+
|
|
3445
|
+
|
|
3401
3446
|
def marshal_obj(o: ta.Any, ty: ta.Any = None) -> ta.Any:
|
|
3402
3447
|
return get_obj_marshaler(ty if ty is not None else type(o)).marshal(o)
|
|
3403
3448
|
|
|
@@ -3916,6 +3961,24 @@ def subprocess_try_output_str(*args: str, **kwargs: ta.Any) -> ta.Optional[str]:
|
|
|
3916
3961
|
return out.decode().strip() if out is not None else None
|
|
3917
3962
|
|
|
3918
3963
|
|
|
3964
|
+
##
|
|
3965
|
+
|
|
3966
|
+
|
|
3967
|
+
def subprocess_close(
|
|
3968
|
+
proc: subprocess.Popen,
|
|
3969
|
+
timeout: ta.Optional[float] = None,
|
|
3970
|
+
) -> None:
|
|
3971
|
+
# TODO: terminate, sleep, kill
|
|
3972
|
+
if proc.stdout:
|
|
3973
|
+
proc.stdout.close()
|
|
3974
|
+
if proc.stderr:
|
|
3975
|
+
proc.stderr.close()
|
|
3976
|
+
if proc.stdin:
|
|
3977
|
+
proc.stdin.close()
|
|
3978
|
+
|
|
3979
|
+
proc.wait(timeout)
|
|
3980
|
+
|
|
3981
|
+
|
|
3919
3982
|
########################################
|
|
3920
3983
|
# ../../interp/inspect.py
|
|
3921
3984
|
|
omdev/tools/git.py
CHANGED
|
@@ -61,38 +61,42 @@ class Cli(ap.Cli):
|
|
|
61
61
|
accepts_unknown=True,
|
|
62
62
|
)
|
|
63
63
|
def clone(self) -> None:
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
'
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
64
|
+
# And expected usage is `cd $(om git clone foo/bar)` and an empty cd arg will return to the previous directory,
|
|
65
|
+
# so always output at least a . so it'll cd to the current dir at least lol - it still runs even if the proc
|
|
66
|
+
# fails.
|
|
67
|
+
out_dir = '.'
|
|
68
|
+
try:
|
|
69
|
+
if (m := self._GITHUB_PAT.fullmatch(self.args.repo)):
|
|
70
|
+
user = m.group('user')
|
|
71
|
+
repo = m.group('repo')
|
|
72
|
+
|
|
73
|
+
os.makedirs(user, 0o755, exist_ok=True)
|
|
74
|
+
|
|
75
|
+
subprocess.check_call([
|
|
76
|
+
'git',
|
|
77
|
+
'clone',
|
|
78
|
+
*self.unknown_args,
|
|
79
|
+
*self.args.args,
|
|
80
|
+
f'https://github.com/{user}/{repo}.git',
|
|
81
|
+
os.path.join(user, repo),
|
|
82
|
+
])
|
|
83
|
+
|
|
84
|
+
out_dir = os.path.join(user, repo)
|
|
85
|
+
|
|
86
|
+
else:
|
|
87
|
+
parsed = urllib.parse.urlparse(self.args.repo)
|
|
88
|
+
out_dir = parsed.path.split('/')[-1]
|
|
89
|
+
|
|
90
|
+
subprocess.check_call([
|
|
91
|
+
'git',
|
|
92
|
+
'clone',
|
|
93
|
+
*self.unknown_args,
|
|
94
|
+
*self.args.args,
|
|
95
|
+
self.args.repo,
|
|
96
|
+
])
|
|
97
|
+
|
|
98
|
+
finally:
|
|
99
|
+
print(out_dir)
|
|
96
100
|
|
|
97
101
|
@ap.command(
|
|
98
102
|
ap.arg('rev', nargs='?', default='HEAD'),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: omdev
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev104
|
|
4
4
|
Summary: omdev
|
|
5
5
|
Author: wrmsr
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -12,7 +12,7 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Classifier: Operating System :: POSIX
|
|
13
13
|
Requires-Python: >=3.12
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: omlish ==0.0.0.
|
|
15
|
+
Requires-Dist: omlish ==0.0.0.dev104
|
|
16
16
|
Provides-Extra: all
|
|
17
17
|
Requires-Dist: black ~=24.10 ; extra == 'all'
|
|
18
18
|
Requires-Dist: pycparser ~=2.22 ; extra == 'all'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
omdev/.manifests.json,sha256=
|
|
1
|
+
omdev/.manifests.json,sha256=NReQmZbfvIWhaZlNmNErHDMVSd0GHVu5otKRNIV1ayA,6713
|
|
2
2
|
omdev/__about__.py,sha256=ON7EnhbxbwLsMj60wkd9OEYPloXZ7jmnMMzeLg44LXY,1225
|
|
3
3
|
omdev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
omdev/bracepy.py,sha256=I8EdqtDvxzAi3I8TuMEW-RBfwXfqKbwp06CfOdj3L1o,2743
|
|
@@ -104,7 +104,7 @@ omdev/precheck/manifests.py,sha256=YfXqt6u0hlFXY0QkBMec6V_6Y9T4eCVAmrJDkQkB13U,7
|
|
|
104
104
|
omdev/precheck/scripts.py,sha256=Xw9kkQzlDd_2V9av9qlaNpNZG9jZdy3TTo7x60MeR2I,1273
|
|
105
105
|
omdev/ptk/__init__.py,sha256=StAwXQ96e8Xkkg7ciR9oBBhcSgqHT76vhoZML82BuY0,447
|
|
106
106
|
omdev/ptk/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
|
-
omdev/ptk/apps/ncdu.py,sha256=
|
|
107
|
+
omdev/ptk/apps/ncdu.py,sha256=m66lMUGuvmFSdpt1tLflvugSHUz-yWbIAKtTLSCcxow,4444
|
|
108
108
|
omdev/pyproject/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
|
109
109
|
omdev/pyproject/__main__.py,sha256=gn3Rl1aYPYdiTtEqa9ifi0t-e4ZwPY0vhJ4UXvYdJDY,165
|
|
110
110
|
omdev/pyproject/cexts.py,sha256=x13piOOnNrYbA17qZLDVuR0p1sqhgEwpk4FtImX-klM,4281
|
|
@@ -114,11 +114,11 @@ omdev/pyproject/pkg.py,sha256=WB9k3zEpHSAR24H09kikgAnLMWUz-bk9f0aB-2L_ITw,14560
|
|
|
114
114
|
omdev/pyproject/reqs.py,sha256=8feZ71YnGzwKbLK4zO28CDQeNcZIIuq6cnkBhs6M-7E,2406
|
|
115
115
|
omdev/scripts/__init__.py,sha256=MKCvUAEQwsIvwLixwtPlpBqmkMXLCnjjXyAXvVpDwVk,91
|
|
116
116
|
omdev/scripts/bumpversion.py,sha256=Kn7fo73Hs8uJh3Hi3EIyLOlzLPWAC6dwuD_lZ3cIzuY,1064
|
|
117
|
-
omdev/scripts/execrss.py,sha256=
|
|
118
|
-
omdev/scripts/exectime.py,sha256=
|
|
117
|
+
omdev/scripts/execrss.py,sha256=mR0G0wERBYtQmVIn63lCIIFb5zkCM6X_XOENDFYDBKc,651
|
|
118
|
+
omdev/scripts/exectime.py,sha256=sFb376GflU6s9gNX-2-we8hgH6w5MuQNS9g6i4SqJIo,610
|
|
119
119
|
omdev/scripts/importtrace.py,sha256=Jbo3Yk2RAbE8_tJ97iTcVNpoxCJxrRb2tl1W_CV3NG0,14067
|
|
120
|
-
omdev/scripts/interp.py,sha256=
|
|
121
|
-
omdev/scripts/pyproject.py,sha256=
|
|
120
|
+
omdev/scripts/interp.py,sha256=U6mU2RPZjwcBhn4Vl4SrAyDUFcf7bBxBnPY5FHCxosw,72496
|
|
121
|
+
omdev/scripts/pyproject.py,sha256=RNWsO9-cu6MUXuWFT1Y200euUu6WcAC4orwGEUoGVWA,165526
|
|
122
122
|
omdev/scripts/slowcat.py,sha256=lssv4yrgJHiWfOiHkUut2p8E8Tq32zB-ujXESQxFFHY,2728
|
|
123
123
|
omdev/toml/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
|
124
124
|
omdev/toml/parser.py,sha256=84bn09uhYHwQGyfww6Rw6y1RxPAE_HDltODOSakcqDM,29186
|
|
@@ -126,7 +126,7 @@ omdev/toml/writer.py,sha256=lk3on3YXVbWuLJa-xsOzOhs1bBAT1vXqw4mBbluZl_w,3040
|
|
|
126
126
|
omdev/tools/__init__.py,sha256=iVJAOQ0viGTQOm0DLX4uZLro-9jOioYJGLg9s0kDx1A,78
|
|
127
127
|
omdev/tools/doc.py,sha256=mv9XfitzqXl3vFHSenv01xHCxWf8g03rUAb_sqoty98,2556
|
|
128
128
|
omdev/tools/docker.py,sha256=k2BrVvFYwyGov064CPHd_HWo9aqR1zHc2UeEsVwPth4,6827
|
|
129
|
-
omdev/tools/git.py,sha256=
|
|
129
|
+
omdev/tools/git.py,sha256=87DrMPtMLVPJ0R6yazX8JkKe8KIQyfEAcI0tYIQgKjU,4188
|
|
130
130
|
omdev/tools/importscan.py,sha256=QeGjR3UGcuuuDUiisFuAXWHlcKJScGxGEcU6tfOh2CM,4069
|
|
131
131
|
omdev/tools/mkrelimp.py,sha256=wsJAjTIf3nqcSfnT9TkDpS1VUOoM9W2Az5tZdWuzyLM,4054
|
|
132
132
|
omdev/tools/notebook.py,sha256=M8Xi_gfZdlahnyFLtp0RBgYZPSHWQStMMDYZc71Zync,3494
|
|
@@ -136,9 +136,9 @@ omdev/tools/sqlrepl.py,sha256=tmFZh80-xsGM62dyQ7_UGLebChrj7IHbIPYBWDJMgVk,5741
|
|
|
136
136
|
omdev/tools/pawk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
137
137
|
omdev/tools/pawk/__main__.py,sha256=VCqeRVnqT1RPEoIrqHFSu4PXVMg4YEgF4qCQm90-eRI,66
|
|
138
138
|
omdev/tools/pawk/pawk.py,sha256=Eckymn22GfychCQcQi96BFqRo_LmiJ-EPhC8TTUJdB4,11446
|
|
139
|
-
omdev-0.0.0.
|
|
140
|
-
omdev-0.0.0.
|
|
141
|
-
omdev-0.0.0.
|
|
142
|
-
omdev-0.0.0.
|
|
143
|
-
omdev-0.0.0.
|
|
144
|
-
omdev-0.0.0.
|
|
139
|
+
omdev-0.0.0.dev104.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
|
140
|
+
omdev-0.0.0.dev104.dist-info/METADATA,sha256=89pRHK2yBo2fCmrRk02C7ZptErZfrEfIYpyZedWax-Y,1704
|
|
141
|
+
omdev-0.0.0.dev104.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
142
|
+
omdev-0.0.0.dev104.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
|
|
143
|
+
omdev-0.0.0.dev104.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
|
|
144
|
+
omdev-0.0.0.dev104.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|