reykit 1.1.105__py3-none-any.whl → 1.1.106__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.
reykit/rlog.py CHANGED
@@ -308,7 +308,6 @@ class Log(Base):
308
308
  """
309
309
 
310
310
 
311
- # Define.
312
311
  def default_filter_method(
313
312
  record: LogRecord
314
313
  ) -> Literal[True]:
@@ -360,7 +359,6 @@ class Log(Base):
360
359
  """
361
360
 
362
361
 
363
- # Define.
364
362
  class _Filter(Base, Filter):
365
363
  """
366
364
  Filter type.
@@ -646,7 +644,6 @@ class Log(Base):
646
644
  _, queue = self.add_queue(level=level, filter_=filter_)
647
645
 
648
646
 
649
- # Define.
650
647
  @wrap_thread
651
648
  def execute() -> None:
652
649
  """
@@ -698,7 +695,6 @@ class Log(Base):
698
695
  """
699
696
 
700
697
 
701
- # Define.
702
698
  def preprocess(__s: str) -> str:
703
699
  """
704
700
  Preprocess function.
reykit/rmonkey.py CHANGED
@@ -209,7 +209,7 @@ def monkey_sqlalchemy_row_index_field():
209
209
  from typing import Any, overload
210
210
  from sqlalchemy.engine.row import Row
211
211
 
212
- # Define.
212
+
213
213
  @overload
214
214
  def __getitem__(self, index: str | int) -> Any: ...
215
215
 
@@ -251,7 +251,6 @@ def monkey_pprint_modify_width_judgment() -> None:
251
251
  from pprint import PrettyPrinter, _recursion
252
252
 
253
253
 
254
- # Define.
255
254
  def __format(_self, obj, stream, indent, allowance, context, level):
256
255
 
257
256
  from .rtext import get_width
@@ -299,12 +298,12 @@ def monkey_path_pil_image_get_bytes():
299
298
  >>> image.get_bytes()
300
299
  """
301
300
 
301
+ # Import.
302
302
  from PIL.Image import Image
303
303
  from io import BytesIO
304
304
  from .rbase import Base
305
305
 
306
306
 
307
- # Define.
308
307
  def method_get_bytes(self: Image) -> bytes:
309
308
  """
310
309
  Get image bytes data.
reykit/rschedule.py CHANGED
@@ -236,7 +236,6 @@ class Schedule(Base):
236
236
  """
237
237
 
238
238
 
239
- # Define.
240
239
  @functools_wraps(task)
241
240
  def _task(*args, **kwargs) -> None:
242
241
  """
reykit/rstdout.py CHANGED
@@ -251,7 +251,6 @@ def modify_print(preprocess: Callable[[str], str] | None) -> None:
251
251
  """
252
252
 
253
253
 
254
- # Define.
255
254
  def write(__s: str) -> int | None:
256
255
  """
257
256
  Modified standard output write method.
@@ -303,7 +302,6 @@ def add_print_position() -> None:
303
302
  """
304
303
 
305
304
 
306
- # Define.
307
305
  def preprocess(__s: str) -> str:
308
306
  """
309
307
  Preprocess function.
reykit/rtask.py CHANGED
@@ -377,7 +377,7 @@ def async_run(
377
377
  before = handle_tasks_func(before)
378
378
  after = handle_tasks_func(after)
379
379
 
380
- # Define.
380
+
381
381
  async def async_run_coroutine() -> list[T | BaseException]:
382
382
  """
383
383
  Asynchronous run coroutines.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reykit
3
- Version: 1.1.105
3
+ Version: 1.1.106
4
4
  Summary: Kit method set.
5
5
  Project-URL: homepage, https://github.com/reyxbo/reykit/
6
6
  Author-email: Rey <reyxbo@163.com>
@@ -4,25 +4,25 @@ reykit/rbase.py,sha256=nQWIODrCkrcNEWY0tNW5Gm894kfqKxkVlr3jsXQRnwI,22252
4
4
  reykit/rdata.py,sha256=JLdq6vAaHsMIV59GifWqb9J5WSuWJr313WtcKI_XvJY,11332
5
5
  reykit/remail.py,sha256=ybWJ2mXSgtIzr-p_OYyrijxjNxQXt5wEMtUUMbhQfLg,6702
6
6
  reykit/rimage.py,sha256=onM8cdkIY2L84nocvSyBoY9-JieIAJn0eWBh30WRPeg,6133
7
- reykit/rlog.py,sha256=cayYGf_VuvxUDIt8Lz3te2IfCNRNsE3TbCMqCcKWf3Q,25734
8
- reykit/rmonkey.py,sha256=1JPAtaf-cNYcLlOv6CEAzBPWRheXS_LyrqiqxaL588M,7931
7
+ reykit/rlog.py,sha256=_B264n2BfFFte-_CfMPeuOieycyaS2Ut4bLR2_xAFa4,25658
8
+ reykit/rmonkey.py,sha256=uvJYGehkXfWoLF65jv4jwWacc8z-8EIhpUsffe-68mA,7903
9
9
  reykit/rnet.py,sha256=p-Z-jMt3LELGQgRPzzkqbdS4X6m7BafGrqn_JLLmsEY,16846
10
10
  reykit/rnum.py,sha256=O8tFLAbDIGG25SvC3i_d9Jq8lRaR1JrzZe5WN0pqIiU,3612
11
11
  reykit/ros.py,sha256=0QIBlhDUv3BCeiuVRBZQbhS6wHLF1RWrLHW1Uq9nUw8,47723
12
12
  reykit/rrand.py,sha256=dcBVVzlRDmSsdWs9MH4SSNMZ_ORhnIBwLzLzX2yvKDk,8558
13
13
  reykit/rre.py,sha256=gNRM94qXWWdyha5kaXeDj03WFs4BGFirq_Orhgi18wY,6010
14
- reykit/rschedule.py,sha256=M-c3cS6P4HWEdGEKHKJBzL4rtlbUdZ4nHJdRWYkdUZk,12196
15
- reykit/rstdout.py,sha256=s2l8cpNrJjtLwRqVv2zPVKcPbIlIncSevK9jzqKmgUo,8120
14
+ reykit/rschedule.py,sha256=--qIgMop7yPQO9W9ac_KiP28-KLvKyHT9IhkY88Mbzo,12177
15
+ reykit/rstdout.py,sha256=ykEOI4K9TDu10KKhI83tlKcIreqgx_Lu6gBC3FvSUXs,8090
16
16
  reykit/rsys.py,sha256=kmk20RozJxSFgqPuUOk7mo7YcKEF1u6irTULpVW4ZLA,24903
17
17
  reykit/rtable.py,sha256=e4Eh06p4XFXLDcIfKPVvFd56nMklvPpaff_pe6NhEIM,10596
18
- reykit/rtask.py,sha256=iAd_ihPZTrdzb9c1ZzvTf_oEQILF-8IrcsGin5h6-mA,27541
18
+ reykit/rtask.py,sha256=n1JFMsKRvy0vOndjsZpHcTe04Z89L82ixVkRfhG9KXM,27528
19
19
  reykit/rtext.py,sha256=M92jCkmak5nELlue7YCFNXS02g_d2Uc1YQSjsdw3KA8,13236
20
20
  reykit/rtime.py,sha256=p6mcGqQZX7XRFOIv4VyOI7K8XWADoltXPT26b2ha2wY,17775
21
21
  reykit/rwrap.py,sha256=noJ_tNqAH95ZgXcFtyiLzKr4MCLkGXFPZvREM-4J068,15074
22
22
  reykit/rzip.py,sha256=kPSjz1hCgPFqmINn3qw_8yVCb6wAPbSq4-VIcan98z8,3442
23
23
  reykit/rdll/__init__.py,sha256=DUYGZzREGzhis36rKYGzI5JYCZJlUoKb80mkoXFfsV4,694
24
24
  reykit/rdll/rdll_core.py,sha256=o6-rKcTQgxZQe0kD3GnwyNb3KL9IogzgCQNOmYLMm7A,5086
25
- reykit-1.1.105.dist-info/METADATA,sha256=sUnFLCYpD2mGd3kIuQi1uMh7XWI6od8JbGuh6O7IvSw,1882
26
- reykit-1.1.105.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
27
- reykit-1.1.105.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
28
- reykit-1.1.105.dist-info/RECORD,,
25
+ reykit-1.1.106.dist-info/METADATA,sha256=7FDMiyxj11fdw6LnIc8NA3J1FBjj894EfTFqZixKRzw,1882
26
+ reykit-1.1.106.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
27
+ reykit-1.1.106.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
28
+ reykit-1.1.106.dist-info/RECORD,,