jetpytools 1.2.7__tar.gz → 1.2.8__tar.gz

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 jetpytools might be problematic. Click here for more details.

Files changed (38) hide show
  1. {jetpytools-1.2.7 → jetpytools-1.2.8}/PKG-INFO +3 -2
  2. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/_metadata.py +1 -1
  3. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/types/builtins.py +5 -1
  4. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools.egg-info/PKG-INFO +3 -2
  5. {jetpytools-1.2.7 → jetpytools-1.2.8}/LICENSE +0 -0
  6. {jetpytools-1.2.7 → jetpytools-1.2.8}/README.md +0 -0
  7. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/__init__.py +0 -0
  8. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/enums/__init__.py +0 -0
  9. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/enums/base.py +0 -0
  10. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/enums/other.py +0 -0
  11. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/exceptions/__init__.py +0 -0
  12. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/exceptions/base.py +0 -0
  13. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/exceptions/enum.py +0 -0
  14. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/exceptions/file.py +0 -0
  15. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/exceptions/generic.py +0 -0
  16. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/exceptions/module.py +0 -0
  17. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/functions/__init__.py +0 -0
  18. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/functions/funcs.py +0 -0
  19. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/functions/normalize.py +0 -0
  20. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/functions/other.py +0 -0
  21. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/py.typed +0 -0
  22. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/types/__init__.py +0 -0
  23. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/types/check.py +0 -0
  24. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/types/file.py +0 -0
  25. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/types/funcs.py +0 -0
  26. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/types/generic.py +0 -0
  27. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/types/supports.py +0 -0
  28. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/types/utils.py +0 -0
  29. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/utils/__init__.py +0 -0
  30. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/utils/file.py +0 -0
  31. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/utils/funcs.py +0 -0
  32. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/utils/math.py +0 -0
  33. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools/utils/ranges.py +0 -0
  34. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools.egg-info/SOURCES.txt +0 -0
  35. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools.egg-info/dependency_links.txt +0 -0
  36. {jetpytools-1.2.7 → jetpytools-1.2.8}/jetpytools.egg-info/top_level.txt +0 -0
  37. {jetpytools-1.2.7 → jetpytools-1.2.8}/setup.cfg +0 -0
  38. {jetpytools-1.2.7 → jetpytools-1.2.8}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: jetpytools
3
- Version: 1.2.7
3
+ Version: 1.2.8
4
4
  Summary: Collection of stuff that's useful in general python programming
5
5
  Author: Jaded Encoding Thaumaturgy
6
6
  Author-email: jaded.encoding.thaumaturgy@gmail.com
@@ -23,6 +23,7 @@ Dynamic: author-email
23
23
  Dynamic: classifier
24
24
  Dynamic: description
25
25
  Dynamic: description-content-type
26
+ Dynamic: license-file
26
27
  Dynamic: maintainer
27
28
  Dynamic: maintainer-email
28
29
  Dynamic: project-url
@@ -1,6 +1,6 @@
1
1
  """Collection of stuff that's useful in general python programming"""
2
2
 
3
- __version__ = '1.2.7'
3
+ __version__ = '1.2.8'
4
4
 
5
5
  __author_name__, __author_email__ = 'Jaded Encoding Thaumaturgy', 'jaded.encoding.thaumaturgy@gmail.com'
6
6
  __maintainer_name__, __maintainer_email__ = __author_name__, __author_email__
@@ -20,9 +20,13 @@ __all__ = [
20
20
  'SimpleByteData', 'SimpleByteDataArray',
21
21
  'ByteData',
22
22
 
23
- 'KwargsT'
23
+ 'KwargsT',
24
+
25
+ 'Self'
24
26
  ]
25
27
 
28
+ Self = TypeVar('Self')
29
+
26
30
  Nb = TypeVar('Nb', float, int)
27
31
 
28
32
  T = TypeVar('T')
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: jetpytools
3
- Version: 1.2.7
3
+ Version: 1.2.8
4
4
  Summary: Collection of stuff that's useful in general python programming
5
5
  Author: Jaded Encoding Thaumaturgy
6
6
  Author-email: jaded.encoding.thaumaturgy@gmail.com
@@ -23,6 +23,7 @@ Dynamic: author-email
23
23
  Dynamic: classifier
24
24
  Dynamic: description
25
25
  Dynamic: description-content-type
26
+ Dynamic: license-file
26
27
  Dynamic: maintainer
27
28
  Dynamic: maintainer-email
28
29
  Dynamic: project-url
File without changes
File without changes
File without changes
File without changes