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.
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/PKG-INFO +1 -1
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/semiotics.py +9 -6
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy.egg-info/PKG-INFO +1 -1
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/pyproject.toml +1 -1
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/LICENSE +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/README.md +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/__init__.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/_theSSOT.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/coping.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/dataStructures.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/filesystemToolkit.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/parseParameters.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/py.typed +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/__init__.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/conftest.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/test_coping.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/test_dataStructures.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/test_filesystemToolkit.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/test_parseParameters.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/tests/test_theTypes.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/theTypes.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy/theTypesCallableFunction.py +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy.egg-info/SOURCES.txt +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy.egg-info/dependency_links.txt +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy.egg-info/requires.txt +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/hunterMakesPy.egg-info/top_level.txt +0 -0
- {huntermakespy-0.7.3 → huntermakespy-0.7.4}/setup.cfg +0 -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
|
-
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|