jetpytools 1.2.3__tar.gz → 1.2.4__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 (37) hide show
  1. {jetpytools-1.2.3 → jetpytools-1.2.4}/PKG-INFO +1 -1
  2. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/_metadata.py +1 -1
  3. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/types/funcs.py +3 -3
  4. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/types/utils.py +1 -1
  5. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools.egg-info/PKG-INFO +1 -1
  6. {jetpytools-1.2.3 → jetpytools-1.2.4}/LICENSE +0 -0
  7. {jetpytools-1.2.3 → jetpytools-1.2.4}/README.md +0 -0
  8. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/__init__.py +0 -0
  9. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/enums/__init__.py +0 -0
  10. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/enums/base.py +0 -0
  11. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/enums/other.py +0 -0
  12. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/exceptions/__init__.py +0 -0
  13. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/exceptions/base.py +0 -0
  14. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/exceptions/enum.py +0 -0
  15. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/exceptions/file.py +0 -0
  16. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/exceptions/generic.py +0 -0
  17. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/exceptions/module.py +0 -0
  18. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/functions/__init__.py +0 -0
  19. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/functions/funcs.py +0 -0
  20. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/functions/normalize.py +0 -0
  21. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/functions/other.py +0 -0
  22. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/py.typed +0 -0
  23. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/types/__init__.py +0 -0
  24. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/types/builtins.py +0 -0
  25. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/types/file.py +0 -0
  26. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/types/generic.py +0 -0
  27. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/types/supports.py +0 -0
  28. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/utils/__init__.py +0 -0
  29. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/utils/file.py +0 -0
  30. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/utils/funcs.py +0 -0
  31. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/utils/math.py +0 -0
  32. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools/utils/ranges.py +0 -0
  33. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools.egg-info/SOURCES.txt +0 -0
  34. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools.egg-info/dependency_links.txt +0 -0
  35. {jetpytools-1.2.3 → jetpytools-1.2.4}/jetpytools.egg-info/top_level.txt +0 -0
  36. {jetpytools-1.2.3 → jetpytools-1.2.4}/setup.cfg +0 -0
  37. {jetpytools-1.2.3 → jetpytools-1.2.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: jetpytools
3
- Version: 1.2.3
3
+ Version: 1.2.4
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
@@ -1,6 +1,6 @@
1
1
  """Collection of stuff that's useful in general python programming"""
2
2
 
3
- __version__ = '1.2.3'
3
+ __version__ = '1.2.4'
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__
@@ -8,7 +8,8 @@ from .supports import SupportsString
8
8
 
9
9
  __all__ = [
10
10
  'StrList',
11
- 'Sentinel'
11
+ 'Sentinel',
12
+ 'SentinelT'
12
13
  ]
13
14
 
14
15
 
@@ -99,10 +100,9 @@ class SentinelDispatcher:
99
100
  def __call__(self) -> SentinelDispatcher:
100
101
  return SentinelDispatcher()
101
102
 
102
- Type: TypeAlias = 'SentinelDispatcher'
103
-
104
103
 
105
104
  Sentinel = SentinelDispatcher()
105
+ SentinelT: TypeAlias = SentinelDispatcher
106
106
 
107
107
  _sentinels = dict[str, SentinelDispatcher]()
108
108
 
@@ -145,7 +145,7 @@ class inject_self_base(Generic[T, P, R]):
145
145
  @wraps(self.function)
146
146
  def _wrapper(*args: Any, **kwargs: Any) -> Any:
147
147
  first_arg = (args[0] if args else None) or (
148
- kwargs.get(self.first_key, None) if self.first_key else None # type: ignore
148
+ kwargs.get(self.first_key, None) if self.first_key else None
149
149
  )
150
150
 
151
151
  if (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: jetpytools
3
- Version: 1.2.3
3
+ Version: 1.2.4
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
File without changes
File without changes
File without changes
File without changes