reykit 1.1.26__py3-none-any.whl → 1.1.27__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/__init__.py CHANGED
@@ -10,10 +10,10 @@
10
10
  Modules
11
11
  -------
12
12
  rall : All methods.
13
+ rbase : Base methods.
13
14
  rdata : Data methods.
14
15
  rdll : DLL file methods.
15
16
  remail : E-mail methods.
16
- rexc : Exception methods.
17
17
  rimage : Image methods.
18
18
  rlog : Log methods.
19
19
  rmonkey : Monkey patch methods.
@@ -29,7 +29,6 @@ rtable : Table methods.
29
29
  rtask : Multi task methods.
30
30
  rtext : Text methods.
31
31
  rtime : Time methods.
32
- rtype : Type methods.
33
32
  rwrap : Decorators.
34
33
  rzip : File compress methods.
35
34
  """
reykit/rall.py CHANGED
@@ -9,10 +9,10 @@
9
9
  """
10
10
 
11
11
 
12
+ from .rbase import *
12
13
  from .rdata import *
13
14
  from .rdll import *
14
15
  from .remail import *
15
- from .rexc import *
16
16
  from .rimage import *
17
17
  from .rlog import *
18
18
  from .rmonkey import *
@@ -28,6 +28,5 @@ from .rtable import *
28
28
  from .rtask import *
29
29
  from .rtext import *
30
30
  from .rtime import *
31
- from .rtype import *
32
31
  from .rwrap import *
33
32
  from .rzip import *