hunterMakesPy 0.7.3__tar.gz → 0.7.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.
Files changed (27) hide show
  1. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/PKG-INFO +1 -1
  2. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/semiotics.py +9 -6
  3. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy.egg-info/PKG-INFO +1 -1
  4. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/pyproject.toml +1 -1
  5. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/LICENSE +0 -0
  6. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/README.md +0 -0
  7. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/__init__.py +0 -0
  8. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/_theSSOT.py +0 -0
  9. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/coping.py +0 -0
  10. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/dataStructures.py +0 -0
  11. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/filesystemToolkit.py +0 -0
  12. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/parseParameters.py +0 -0
  13. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/py.typed +0 -0
  14. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/__init__.py +0 -0
  15. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/conftest.py +0 -0
  16. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/test_coping.py +0 -0
  17. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/test_dataStructures.py +0 -0
  18. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/test_filesystemToolkit.py +0 -0
  19. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/test_parseParameters.py +0 -0
  20. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/test_theTypes.py +0 -0
  21. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/theTypes.py +0 -0
  22. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/theTypesCallableFunction.py +0 -0
  23. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy.egg-info/SOURCES.txt +0 -0
  24. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy.egg-info/dependency_links.txt +0 -0
  25. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy.egg-info/requires.txt +0 -0
  26. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy.egg-info/top_level.txt +0 -0
  27. {huntermakespy-0.7.3 → huntermakespy-0.7.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hunterMakesPy
3
- Version: 0.7.3
3
+ Version: 0.7.4
4
4
  Summary: Easy Python functions making making functional Python functions easier.
5
5
  Author-email: Hunter Hogan <HunterHogan@pm.me>
6
6
  License-Expression: CC-BY-NC-4.0
@@ -39,11 +39,11 @@ References
39
39
  """
40
40
  from __future__ import annotations
41
41
 
42
- from typing import NamedTuple
42
+ from typing import Final, NamedTuple
43
43
 
44
44
  #======== Semantic replacements for ambiguous values. =======
45
45
 
46
- decreasing: int = -1
46
+ decreasing: Final[int] = -1
47
47
  """Express descending iteration or a reverse direction.
48
48
 
49
49
  The identifier `decreasing` holds the value `-1` and serves as a semantic replacement for
@@ -102,7 +102,7 @@ References
102
102
 
103
103
  """
104
104
 
105
- errorL33T: int = 31212012
105
+ errorL33T: Final[int] = 31212012
106
106
  """Signal an error state with a visually distinctive numeric value.
107
107
 
108
108
  The identifier `errorL33T` holds the value `31212012` and serves as a semantic replacement for
@@ -155,7 +155,7 @@ References
155
155
 
156
156
  """
157
157
 
158
- inclusive: int = 1
158
+ inclusive: Final[int] = 1
159
159
  """Express inclusion (or exclusion) of a boundary value.
160
160
 
161
161
  The identifier `inclusive` holds the value `1` and serves as a semantic replacement for the numeric
@@ -248,7 +248,10 @@ References
248
248
 
249
249
  """
250
250
 
251
- zeroIndexed: int = 1
251
+ oneIndexed: Final[int] = 1
252
+ """Express that the adjustment to a value is due to one-based indexing."""
253
+
254
+ zeroIndexed: Final[int] = 1
252
255
  """Express that the adjustment to a value is due to zero-based indexing.
253
256
 
254
257
  The identifier `zeroIndexed` holds the value `1` and serves as a semantic replacement
@@ -325,7 +328,7 @@ References
325
328
  # Many, many, many options at https://stackoverflow.com/a/33206814/4403878
326
329
  # NOTE Always define color and background color at the same time.
327
330
 
328
- ansiColorReset: str = '\x1b[0m'
331
+ ansiColorReset: Final[str] = '\x1b[0m'
329
332
  """Reset terminal text color and background to default settings.
330
333
 
331
334
  The identifier `ansiColorReset` holds the ANSI escape sequence [1] `\x1b[0m` that resets terminal
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hunterMakesPy
3
- Version: 0.7.3
3
+ Version: 0.7.4
4
4
  Summary: Easy Python functions making making functional Python functions easier.
5
5
  Author-email: Hunter Hogan <HunterHogan@pm.me>
6
6
  License-Expression: CC-BY-NC-4.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "hunterMakesPy"
3
- version = "0.7.3"
3
+ version = "0.7.4"
4
4
  description = "Easy Python functions making making functional Python functions easier."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes
File without changes
File without changes