omdev 0.0.0.dev387__py3-none-any.whl → 0.0.0.dev389__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/__about__.py CHANGED
@@ -24,8 +24,8 @@ class Project(ProjectBase):
24
24
  'doc': [
25
25
  'docutils ~= 0.22',
26
26
 
27
- 'markdown-it-py ~= 3.0',
28
- 'mdit-py-plugins ~= 0.4',
27
+ 'markdown-it-py ~= 4.0',
28
+ 'mdit-py-plugins ~= 0.5',
29
29
 
30
30
  'pygments ~= 2.19',
31
31
  ],
omdev/amalg/typing.py CHANGED
@@ -11,6 +11,8 @@ from ..tokens import all as tks
11
11
  TYPE_ALIAS_COMMENT = '# ta.TypeAlias'
12
12
  NOQA_TYPE_ALIAS_COMMENT = TYPE_ALIAS_COMMENT + ' # noqa'
13
13
 
14
+ NO_MOVE_COMMENT = '# omlish-amalg-typing-no-move'
15
+
14
16
 
15
17
  @dc.dataclass(frozen=True, kw_only=True)
16
18
  class Typing:
@@ -28,6 +30,8 @@ def _is_typing(
28
30
  exclude_newtypes: bool = False,
29
31
  ) -> bool:
30
32
  es = tks.join_toks(lts).strip()
33
+ if es.endswith(NO_MOVE_COMMENT):
34
+ return False
31
35
  if any(es.endswith(sfx) for sfx in (TYPE_ALIAS_COMMENT, NOQA_TYPE_ALIAS_COMMENT)):
32
36
  return True
33
37
 
omdev/ptk/confirm.py CHANGED
@@ -1,3 +1,5 @@
1
+ import typing as ta
2
+
1
3
  from prompt_toolkit.formatted_text import merge_formatted_text
2
4
  from prompt_toolkit.key_binding import KeyBindings
3
5
  from prompt_toolkit.key_binding import KeyPressEvent
@@ -47,7 +49,7 @@ async def m_strict_confirm(message: str = 'Confirm?', suffix: str = ' (y/n) ') -
47
49
 
48
50
  while True:
49
51
  session = create_strict_confirm_session(message, suffix)
50
- ret = await lang.make_maysync(session.prompt, session.prompt_async).m()
52
+ ret = await lang.make_maysync(session.prompt, ta.cast(ta.Any, session.prompt_async))().m()
51
53
 
52
54
  if isinstance(ret, str):
53
55
  check.empty(ret)
omdev/scripts/ci.py CHANGED
@@ -5976,6 +5976,17 @@ class SubprocessRun:
5976
5976
  async_subprocesses = self._DEFAULT_ASYNC_SUBPROCESSES
5977
5977
  return await check.not_none(async_subprocesses).run_(self.replace(**kwargs))
5978
5978
 
5979
+ _DEFAULT_MAYSYNC_SUBPROCESSES: ta.ClassVar[ta.Optional[ta.Any]] = None # AbstractMaysyncSubprocesses
5980
+
5981
+ async def maysync_run(
5982
+ self,
5983
+ maysync_subprocesses: ta.Optional[ta.Any] = None, # AbstractMaysyncSubprocesses
5984
+ **kwargs: ta.Any,
5985
+ ) -> SubprocessRunOutput:
5986
+ if maysync_subprocesses is None:
5987
+ maysync_subprocesses = self._DEFAULT_MAYSYNC_SUBPROCESSES
5988
+ return await check.not_none(maysync_subprocesses).run_(self.replace(**kwargs))
5989
+
5979
5990
 
5980
5991
  SubprocessRun._FIELD_NAMES = frozenset(fld.name for fld in dc.fields(SubprocessRun)) # noqa
5981
5992
 
@@ -6008,6 +6019,13 @@ class SubprocessRunnable(abc.ABC, ta.Generic[T]):
6008
6019
  ) -> T:
6009
6020
  return self.handle_run_output(await self.make_run().async_run(async_subprocesses, **kwargs))
6010
6021
 
6022
+ async def maysync_run(
6023
+ self,
6024
+ maysync_subprocesses: ta.Optional[ta.Any] = None, # AbstractMaysyncSubprocesses
6025
+ **kwargs: ta.Any,
6026
+ ) -> T:
6027
+ return self.handle_run_output(await self.make_run().maysync_run(maysync_subprocesses, **kwargs))
6028
+
6011
6029
 
6012
6030
  ########################################
6013
6031
  # ../../../omlish/text/mangle.py
@@ -11058,7 +11076,7 @@ class CoroHttpServerSocketHandler(SocketHandler_):
11058
11076
 
11059
11077
 
11060
11078
  ########################################
11061
- # ../../../omlish/subprocesses/async_.py
11079
+ # ../../../omlish/subprocesses/asyncs.py
11062
11080
 
11063
11081
 
11064
11082
  ##
@@ -11066,7 +11084,7 @@ class CoroHttpServerSocketHandler(SocketHandler_):
11066
11084
 
11067
11085
  class AbstractAsyncSubprocesses(BaseSubprocesses):
11068
11086
  @abc.abstractmethod
11069
- async def run_(self, run: SubprocessRun) -> SubprocessRunOutput:
11087
+ def run_(self, run: SubprocessRun) -> ta.Awaitable[SubprocessRunOutput]:
11070
11088
  raise NotImplementedError
11071
11089
 
11072
11090
  def run(
@@ -11089,31 +11107,41 @@ class AbstractAsyncSubprocesses(BaseSubprocesses):
11089
11107
 
11090
11108
  #
11091
11109
 
11092
- @abc.abstractmethod
11093
11110
  async def check_call(
11094
11111
  self,
11095
11112
  *cmd: str,
11096
11113
  stdout: ta.Any = sys.stderr,
11097
11114
  **kwargs: ta.Any,
11098
11115
  ) -> None:
11099
- raise NotImplementedError
11116
+ await self.run(
11117
+ *cmd,
11118
+ stdout=stdout,
11119
+ check=True,
11120
+ **kwargs,
11121
+ )
11100
11122
 
11101
- @abc.abstractmethod
11102
11123
  async def check_output(
11103
11124
  self,
11104
11125
  *cmd: str,
11126
+ stdout: ta.Any = subprocess.PIPE,
11105
11127
  **kwargs: ta.Any,
11106
11128
  ) -> bytes:
11107
- raise NotImplementedError
11108
-
11109
- #
11129
+ return check.not_none((await self.run(
11130
+ *cmd,
11131
+ stdout=stdout,
11132
+ check=True,
11133
+ **kwargs,
11134
+ )).stdout)
11110
11135
 
11111
11136
  async def check_output_str(
11112
11137
  self,
11113
11138
  *cmd: str,
11114
11139
  **kwargs: ta.Any,
11115
11140
  ) -> str:
11116
- return (await self.check_output(*cmd, **kwargs)).decode().strip()
11141
+ return (await self.check_output(
11142
+ *cmd,
11143
+ **kwargs,
11144
+ )).decode().strip()
11117
11145
 
11118
11146
  #
11119
11147
 
@@ -11268,6 +11296,8 @@ class Subprocesses(AbstractSubprocesses):
11268
11296
  stderr=proc.stderr, # noqa
11269
11297
  )
11270
11298
 
11299
+ #
11300
+
11271
11301
  def check_call(
11272
11302
  self,
11273
11303
  *cmd: str,
@@ -11831,25 +11861,6 @@ class AsyncioSubprocesses(AbstractAsyncSubprocesses):
11831
11861
  stderr=stderr,
11832
11862
  )
11833
11863
 
11834
- #
11835
-
11836
- async def check_call(
11837
- self,
11838
- *cmd: str,
11839
- stdout: ta.Any = sys.stderr,
11840
- **kwargs: ta.Any,
11841
- ) -> None:
11842
- with self.prepare_and_wrap(*cmd, stdout=stdout, check=True, **kwargs) as (cmd, kwargs): # noqa
11843
- await self.run(*cmd, **kwargs)
11844
-
11845
- async def check_output(
11846
- self,
11847
- *cmd: str,
11848
- **kwargs: ta.Any,
11849
- ) -> bytes:
11850
- with self.prepare_and_wrap(*cmd, stdout=subprocess.PIPE, check=True, **kwargs) as (cmd, kwargs): # noqa
11851
- return check.not_none((await self.run(*cmd, **kwargs)).stdout)
11852
-
11853
11864
 
11854
11865
  asyncio_subprocesses = AsyncioSubprocesses()
11855
11866
 
omdev/scripts/interp.py CHANGED
@@ -3886,6 +3886,17 @@ class SubprocessRun:
3886
3886
  async_subprocesses = self._DEFAULT_ASYNC_SUBPROCESSES
3887
3887
  return await check.not_none(async_subprocesses).run_(self.replace(**kwargs))
3888
3888
 
3889
+ _DEFAULT_MAYSYNC_SUBPROCESSES: ta.ClassVar[ta.Optional[ta.Any]] = None # AbstractMaysyncSubprocesses
3890
+
3891
+ async def maysync_run(
3892
+ self,
3893
+ maysync_subprocesses: ta.Optional[ta.Any] = None, # AbstractMaysyncSubprocesses
3894
+ **kwargs: ta.Any,
3895
+ ) -> SubprocessRunOutput:
3896
+ if maysync_subprocesses is None:
3897
+ maysync_subprocesses = self._DEFAULT_MAYSYNC_SUBPROCESSES
3898
+ return await check.not_none(maysync_subprocesses).run_(self.replace(**kwargs))
3899
+
3889
3900
 
3890
3901
  SubprocessRun._FIELD_NAMES = frozenset(fld.name for fld in dc.fields(SubprocessRun)) # noqa
3891
3902
 
@@ -3918,6 +3929,13 @@ class SubprocessRunnable(abc.ABC, ta.Generic[T]):
3918
3929
  ) -> T:
3919
3930
  return self.handle_run_output(await self.make_run().async_run(async_subprocesses, **kwargs))
3920
3931
 
3932
+ async def maysync_run(
3933
+ self,
3934
+ maysync_subprocesses: ta.Optional[ta.Any] = None, # AbstractMaysyncSubprocesses
3935
+ **kwargs: ta.Any,
3936
+ ) -> T:
3937
+ return self.handle_run_output(await self.make_run().maysync_run(maysync_subprocesses, **kwargs))
3938
+
3921
3939
 
3922
3940
  ########################################
3923
3941
  # ../types.py
@@ -4517,7 +4535,7 @@ class InterpResolver:
4517
4535
 
4518
4536
 
4519
4537
  ########################################
4520
- # ../../../omlish/subprocesses/async_.py
4538
+ # ../../../omlish/subprocesses/asyncs.py
4521
4539
 
4522
4540
 
4523
4541
  ##
@@ -4525,7 +4543,7 @@ class InterpResolver:
4525
4543
 
4526
4544
  class AbstractAsyncSubprocesses(BaseSubprocesses):
4527
4545
  @abc.abstractmethod
4528
- async def run_(self, run: SubprocessRun) -> SubprocessRunOutput:
4546
+ def run_(self, run: SubprocessRun) -> ta.Awaitable[SubprocessRunOutput]:
4529
4547
  raise NotImplementedError
4530
4548
 
4531
4549
  def run(
@@ -4548,31 +4566,41 @@ class AbstractAsyncSubprocesses(BaseSubprocesses):
4548
4566
 
4549
4567
  #
4550
4568
 
4551
- @abc.abstractmethod
4552
4569
  async def check_call(
4553
4570
  self,
4554
4571
  *cmd: str,
4555
4572
  stdout: ta.Any = sys.stderr,
4556
4573
  **kwargs: ta.Any,
4557
4574
  ) -> None:
4558
- raise NotImplementedError
4575
+ await self.run(
4576
+ *cmd,
4577
+ stdout=stdout,
4578
+ check=True,
4579
+ **kwargs,
4580
+ )
4559
4581
 
4560
- @abc.abstractmethod
4561
4582
  async def check_output(
4562
4583
  self,
4563
4584
  *cmd: str,
4585
+ stdout: ta.Any = subprocess.PIPE,
4564
4586
  **kwargs: ta.Any,
4565
4587
  ) -> bytes:
4566
- raise NotImplementedError
4567
-
4568
- #
4588
+ return check.not_none((await self.run(
4589
+ *cmd,
4590
+ stdout=stdout,
4591
+ check=True,
4592
+ **kwargs,
4593
+ )).stdout)
4569
4594
 
4570
4595
  async def check_output_str(
4571
4596
  self,
4572
4597
  *cmd: str,
4573
4598
  **kwargs: ta.Any,
4574
4599
  ) -> str:
4575
- return (await self.check_output(*cmd, **kwargs)).decode().strip()
4600
+ return (await self.check_output(
4601
+ *cmd,
4602
+ **kwargs,
4603
+ )).decode().strip()
4576
4604
 
4577
4605
  #
4578
4606
 
@@ -4799,25 +4827,6 @@ class AsyncioSubprocesses(AbstractAsyncSubprocesses):
4799
4827
  stderr=stderr,
4800
4828
  )
4801
4829
 
4802
- #
4803
-
4804
- async def check_call(
4805
- self,
4806
- *cmd: str,
4807
- stdout: ta.Any = sys.stderr,
4808
- **kwargs: ta.Any,
4809
- ) -> None:
4810
- with self.prepare_and_wrap(*cmd, stdout=stdout, check=True, **kwargs) as (cmd, kwargs): # noqa
4811
- await self.run(*cmd, **kwargs)
4812
-
4813
- async def check_output(
4814
- self,
4815
- *cmd: str,
4816
- **kwargs: ta.Any,
4817
- ) -> bytes:
4818
- with self.prepare_and_wrap(*cmd, stdout=subprocess.PIPE, check=True, **kwargs) as (cmd, kwargs): # noqa
4819
- return check.not_none((await self.run(*cmd, **kwargs)).stdout)
4820
-
4821
4830
 
4822
4831
  asyncio_subprocesses = AsyncioSubprocesses()
4823
4832
 
@@ -6336,6 +6336,17 @@ class SubprocessRun:
6336
6336
  async_subprocesses = self._DEFAULT_ASYNC_SUBPROCESSES
6337
6337
  return await check.not_none(async_subprocesses).run_(self.replace(**kwargs))
6338
6338
 
6339
+ _DEFAULT_MAYSYNC_SUBPROCESSES: ta.ClassVar[ta.Optional[ta.Any]] = None # AbstractMaysyncSubprocesses
6340
+
6341
+ async def maysync_run(
6342
+ self,
6343
+ maysync_subprocesses: ta.Optional[ta.Any] = None, # AbstractMaysyncSubprocesses
6344
+ **kwargs: ta.Any,
6345
+ ) -> SubprocessRunOutput:
6346
+ if maysync_subprocesses is None:
6347
+ maysync_subprocesses = self._DEFAULT_MAYSYNC_SUBPROCESSES
6348
+ return await check.not_none(maysync_subprocesses).run_(self.replace(**kwargs))
6349
+
6339
6350
 
6340
6351
  SubprocessRun._FIELD_NAMES = frozenset(fld.name for fld in dc.fields(SubprocessRun)) # noqa
6341
6352
 
@@ -6368,6 +6379,13 @@ class SubprocessRunnable(abc.ABC, ta.Generic[T]):
6368
6379
  ) -> T:
6369
6380
  return self.handle_run_output(await self.make_run().async_run(async_subprocesses, **kwargs))
6370
6381
 
6382
+ async def maysync_run(
6383
+ self,
6384
+ maysync_subprocesses: ta.Optional[ta.Any] = None, # AbstractMaysyncSubprocesses
6385
+ **kwargs: ta.Any,
6386
+ ) -> T:
6387
+ return self.handle_run_output(await self.make_run().maysync_run(maysync_subprocesses, **kwargs))
6388
+
6371
6389
 
6372
6390
  ########################################
6373
6391
  # ../../interp/types.py
@@ -6967,7 +6985,7 @@ class InterpResolver:
6967
6985
 
6968
6986
 
6969
6987
  ########################################
6970
- # ../../../omlish/subprocesses/async_.py
6988
+ # ../../../omlish/subprocesses/asyncs.py
6971
6989
 
6972
6990
 
6973
6991
  ##
@@ -6975,7 +6993,7 @@ class InterpResolver:
6975
6993
 
6976
6994
  class AbstractAsyncSubprocesses(BaseSubprocesses):
6977
6995
  @abc.abstractmethod
6978
- async def run_(self, run: SubprocessRun) -> SubprocessRunOutput:
6996
+ def run_(self, run: SubprocessRun) -> ta.Awaitable[SubprocessRunOutput]:
6979
6997
  raise NotImplementedError
6980
6998
 
6981
6999
  def run(
@@ -6998,31 +7016,41 @@ class AbstractAsyncSubprocesses(BaseSubprocesses):
6998
7016
 
6999
7017
  #
7000
7018
 
7001
- @abc.abstractmethod
7002
7019
  async def check_call(
7003
7020
  self,
7004
7021
  *cmd: str,
7005
7022
  stdout: ta.Any = sys.stderr,
7006
7023
  **kwargs: ta.Any,
7007
7024
  ) -> None:
7008
- raise NotImplementedError
7025
+ await self.run(
7026
+ *cmd,
7027
+ stdout=stdout,
7028
+ check=True,
7029
+ **kwargs,
7030
+ )
7009
7031
 
7010
- @abc.abstractmethod
7011
7032
  async def check_output(
7012
7033
  self,
7013
7034
  *cmd: str,
7035
+ stdout: ta.Any = subprocess.PIPE,
7014
7036
  **kwargs: ta.Any,
7015
7037
  ) -> bytes:
7016
- raise NotImplementedError
7017
-
7018
- #
7038
+ return check.not_none((await self.run(
7039
+ *cmd,
7040
+ stdout=stdout,
7041
+ check=True,
7042
+ **kwargs,
7043
+ )).stdout)
7019
7044
 
7020
7045
  async def check_output_str(
7021
7046
  self,
7022
7047
  *cmd: str,
7023
7048
  **kwargs: ta.Any,
7024
7049
  ) -> str:
7025
- return (await self.check_output(*cmd, **kwargs)).decode().strip()
7050
+ return (await self.check_output(
7051
+ *cmd,
7052
+ **kwargs,
7053
+ )).decode().strip()
7026
7054
 
7027
7055
  #
7028
7056
 
@@ -7177,6 +7205,8 @@ class Subprocesses(AbstractSubprocesses):
7177
7205
  stderr=proc.stderr, # noqa
7178
7206
  )
7179
7207
 
7208
+ #
7209
+
7180
7210
  def check_call(
7181
7211
  self,
7182
7212
  *cmd: str,
@@ -7444,25 +7474,6 @@ class AsyncioSubprocesses(AbstractAsyncSubprocesses):
7444
7474
  stderr=stderr,
7445
7475
  )
7446
7476
 
7447
- #
7448
-
7449
- async def check_call(
7450
- self,
7451
- *cmd: str,
7452
- stdout: ta.Any = sys.stderr,
7453
- **kwargs: ta.Any,
7454
- ) -> None:
7455
- with self.prepare_and_wrap(*cmd, stdout=stdout, check=True, **kwargs) as (cmd, kwargs): # noqa
7456
- await self.run(*cmd, **kwargs)
7457
-
7458
- async def check_output(
7459
- self,
7460
- *cmd: str,
7461
- **kwargs: ta.Any,
7462
- ) -> bytes:
7463
- with self.prepare_and_wrap(*cmd, stdout=subprocess.PIPE, check=True, **kwargs) as (cmd, kwargs): # noqa
7464
- return check.not_none((await self.run(*cmd, **kwargs)).stdout)
7465
-
7466
7477
 
7467
7478
  asyncio_subprocesses = AsyncioSubprocesses()
7468
7479
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omdev
3
- Version: 0.0.0.dev387
3
+ Version: 0.0.0.dev389
4
4
  Summary: omdev
5
5
  Author: wrmsr
6
6
  License-Expression: BSD-3-Clause
@@ -14,14 +14,14 @@ 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.dev387
17
+ Requires-Dist: omlish==0.0.0.dev389
18
18
  Provides-Extra: all
19
19
  Requires-Dist: black~=25.1; extra == "all"
20
20
  Requires-Dist: pycparser~=2.22; extra == "all"
21
21
  Requires-Dist: pcpp~=1.30; extra == "all"
22
22
  Requires-Dist: docutils~=0.22; extra == "all"
23
- Requires-Dist: markdown-it-py~=3.0; extra == "all"
24
- Requires-Dist: mdit-py-plugins~=0.4; extra == "all"
23
+ Requires-Dist: markdown-it-py~=4.0; extra == "all"
24
+ Requires-Dist: mdit-py-plugins~=0.5; extra == "all"
25
25
  Requires-Dist: pygments~=2.19; extra == "all"
26
26
  Requires-Dist: mypy~=1.17; extra == "all"
27
27
  Requires-Dist: gprof2dot~=2025.4; extra == "all"
@@ -34,8 +34,8 @@ Requires-Dist: pycparser~=2.22; extra == "c"
34
34
  Requires-Dist: pcpp~=1.30; extra == "c"
35
35
  Provides-Extra: doc
36
36
  Requires-Dist: docutils~=0.22; extra == "doc"
37
- Requires-Dist: markdown-it-py~=3.0; extra == "doc"
38
- Requires-Dist: mdit-py-plugins~=0.4; extra == "doc"
37
+ Requires-Dist: markdown-it-py~=4.0; extra == "doc"
38
+ Requires-Dist: mdit-py-plugins~=0.5; extra == "doc"
39
39
  Requires-Dist: pygments~=2.19; extra == "doc"
40
40
  Provides-Extra: mypy
41
41
  Requires-Dist: mypy~=1.17; extra == "mypy"
@@ -1,5 +1,5 @@
1
1
  omdev/.manifests.json,sha256=cprM065HGO3vKL_ru2fzUGi-J3goZ_jMLkm_B3qGM94,11863
2
- omdev/__about__.py,sha256=6XIIfrZ3wo8RkHO8HcgV7H2HnR8BXG5O5OJKvxa-0Ms,1202
2
+ omdev/__about__.py,sha256=fQNmzSa1MntcPSrzg_Vpo6JRU2RbXik2NqRz0oQCApE,1202
3
3
  omdev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  omdev/cmake.py,sha256=9rfSvFHPmKDj9ngvfDB2vK8O-xO_ZwUm7hMKLWA-yOw,4578
5
5
  omdev/imgur.py,sha256=4XolajBnAJ1U2zvT6Y0fiUyBi_a8G9arXffvPxf3w-M,3103
@@ -15,7 +15,7 @@ omdev/amalg/resources.py,sha256=aIqVd1tbGCv4vIt6gbzqnB0L3PsQsAeqVaZJ_J7QSz8,2692
15
15
  omdev/amalg/srcfiles.py,sha256=TKSYSfv78Wb8bcsQS3V76dV_H_MICPwzv06Ar09ew9U,3079
16
16
  omdev/amalg/strip.py,sha256=dWQQ5WbtcebLi_PGjPzVYey2mJOnrRES8rkoUS8L52w,1444
17
17
  omdev/amalg/types.py,sha256=BXXJI0VctKTsZv_wXiyMMq3-xShxZ1ak0wxXUK8n9_g,89
18
- omdev/amalg/typing.py,sha256=oLlkCnnZQkyKM_xxqm9uxECjn9xj0c4MIwYxxItBdPY,2191
18
+ omdev/amalg/typing.py,sha256=GZX0O7J6lgxOX0mZV3T9M8IkVJpyohKj2vHF4UaUpHk,2300
19
19
  omdev/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  omdev/cache/compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  omdev/cache/compute/cache.py,sha256=7cJmxiHwbnitMZaLZEZVjEq0v1JJN7HKBK-BH_EtVY4,3628
@@ -217,7 +217,7 @@ omdev/precheck/manifests.py,sha256=1CG0PG0feagydT-cgxiOBvQKhoILjZVXk4MYf65wkkM,7
217
217
  omdev/precheck/scripts.py,sha256=244Jq5xee2QErn0gvpt0hmdYg95TYtuefMDXaE9YPws,1344
218
218
  omdev/precheck/unicode.py,sha256=VUNDCrlfUas_U8ugV_q0eFUXuBgKjS8YdCFm0FXREXo,2583
219
219
  omdev/ptk/__init__.py,sha256=4zhIfvhebFj4TJRRN1SQkcAe-7elizcfZLsD-fIlZsI,5198
220
- omdev/ptk/confirm.py,sha256=TJdZno0I_-pmUqVimz3ySgoYWIsQ5_yP_e1ElhDD4HI,1571
220
+ omdev/ptk/confirm.py,sha256=11MJArDEMSm7L1Qx68B07Qfsu43_ACyk48tbub7P9jk,1611
221
221
  omdev/ptk/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
222
222
  omdev/ptk/apps/ncdu.py,sha256=KTbAgwhzcROOvq20VGN92UwMWcgkMMVOeFfpjZAsKUk,4561
223
223
  omdev/ptk/markdown/LICENSE,sha256=oSmc9j-n23wTJUO0TbY8sIHrf9pFZUovFWfDL7D53IA,1489
@@ -265,9 +265,9 @@ omdev/pyproject/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
265
265
  omdev/pyproject/resources/docker-dev.sh,sha256=DHkz5D18jok_oDolfg2mqrvGRWFoCe9GQo04dR1czcc,838
266
266
  omdev/pyproject/resources/python.sh,sha256=rFaN4SiJ9hdLDXXsDTwugI6zsw6EPkgYMmtacZeTbvw,749
267
267
  omdev/scripts/__init__.py,sha256=MKCvUAEQwsIvwLixwtPlpBqmkMXLCnjjXyAXvVpDwVk,91
268
- omdev/scripts/ci.py,sha256=TTi3EGLN0h1L5lQovZ70Q6fNs3MAkgEFYGIiKbF4ufE,362069
269
- omdev/scripts/interp.py,sha256=26l9809srcsgFo5soTMoybo9NqSBAKIBm0x5Vv-v5Wo,158061
270
- omdev/scripts/pyproject.py,sha256=Z4rhwcD4l3_tszNdKFwd4TlmvGEKNmr8EYPaHNXwux8,269559
268
+ omdev/scripts/ci.py,sha256=sReH_mR0BiE3-KPBD2VVEyKrUJNJhcTF0oeSm7pmyyg,362502
269
+ omdev/scripts/interp.py,sha256=2xNG-ObiPC-F5eV_nTHq2u-V3Hyuo_6KblPFCBhm2mA,158487
270
+ omdev/scripts/pyproject.py,sha256=DL5q2gsnGChTTuzSHn1PprW2kl3ti_K60JXnKLZdA40,269992
271
271
  omdev/scripts/slowcat.py,sha256=lssv4yrgJHiWfOiHkUut2p8E8Tq32zB-ujXESQxFFHY,2728
272
272
  omdev/scripts/tmpexec.py,sha256=WTYcf56Tj2qjYV14AWmV8SfT0u6Y8eIU6cKgQRvEK3c,1442
273
273
  omdev/tokens/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -316,9 +316,9 @@ omdev/tools/jsonview/resources/jsonview.js,sha256=faDvXDOXKvEvjOuIlz4D3F2ReQXb_b
316
316
  omdev/tools/pawk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
317
  omdev/tools/pawk/__main__.py,sha256=VCqeRVnqT1RPEoIrqHFSu4PXVMg4YEgF4qCQm90-eRI,66
318
318
  omdev/tools/pawk/pawk.py,sha256=ao5mdrpiSU4AZ8mBozoEaV3UVlmVTnRG9wD9XP70MZE,11429
319
- omdev-0.0.0.dev387.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
320
- omdev-0.0.0.dev387.dist-info/METADATA,sha256=uPihGTRaQIGK30ba-Gs7sRIF0QXbGSoycCU6sGSYklc,5094
321
- omdev-0.0.0.dev387.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
322
- omdev-0.0.0.dev387.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
323
- omdev-0.0.0.dev387.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
324
- omdev-0.0.0.dev387.dist-info/RECORD,,
319
+ omdev-0.0.0.dev389.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
320
+ omdev-0.0.0.dev389.dist-info/METADATA,sha256=9nmPj3rMVeLBxcT3m6KA9J2nOGX79pWwEzg6Dxr3Kqw,5094
321
+ omdev-0.0.0.dev389.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
322
+ omdev-0.0.0.dev389.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
323
+ omdev-0.0.0.dev389.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
324
+ omdev-0.0.0.dev389.dist-info/RECORD,,