pythonic-fp-gadgets 4.0.0__tar.gz → 4.0.1__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.
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/CHANGELOG.rst +4 -2
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/PKG-INFO +2 -1
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/README.rst +1 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/pyproject.toml +1 -1
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/.gitignore +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/LICENSE +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/__init__.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/__init__.pyi +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/box.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/box.pyi +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/py.typed +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/__init__.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/__init__.pyi +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/flavored.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/flavored.pyi +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/novalue.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/novalue.pyi +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/wrap.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/wrap.pyi +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/sentinels/test_novalue.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/sentinels/test_sentinel_hidden_implemetation_detail.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/sentinels/test_sentinel_with_functions.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_box.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_first_common_ancestor.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_hwrap.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_iterate_over_arguments.py +0 -0
- {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_wrap.py +0 -0
|
@@ -17,14 +17,16 @@ See `Semantic Versioning 2.0.0 <https://semver.org>`_.
|
|
|
17
17
|
Releases and Important Milestones
|
|
18
18
|
---------------------------------
|
|
19
19
|
|
|
20
|
-
PyPI v4.0.
|
|
21
|
-
|
|
20
|
+
PyPI v4.0.1 - 2025-12-02
|
|
21
|
+
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
22
22
|
|
|
23
23
|
Move functions out of their own packages to __init__.py (2025-10-13).
|
|
24
24
|
|
|
25
25
|
- latest_common_ancestor.lca -> first_common_ancestor
|
|
26
26
|
- iterate_arguments.ita -> iterate_over_arguments
|
|
27
27
|
|
|
28
|
+
Unfortunately I forgot to push these changes to PyPI for a
|
|
29
|
+
month and a half.
|
|
28
30
|
|
|
29
31
|
PyPI v3.0.1 - 2025-09-09
|
|
30
32
|
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pythonic-fp-gadgets
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.1
|
|
4
4
|
Summary: **Module level function names.**
|
|
5
5
|
Keywords: gadgets
|
|
6
6
|
Author-email: "Geoffrey R. Scheller" <geoffrey@scheller.com>
|
|
@@ -33,6 +33,7 @@ Library of simple, but useful, classes and functions with no dependencies
|
|
|
33
33
|
outside the Python Standard Library.
|
|
34
34
|
|
|
35
35
|
- Gadgets
|
|
36
|
+
|
|
36
37
|
- single item box
|
|
37
38
|
- function returning iterator of its arguments
|
|
38
39
|
- find the latest common ancestor of two classes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/__init__.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/novalue.py
RENAMED
|
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
|
{pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_iterate_over_arguments.py
RENAMED
|
File without changes
|
|
File without changes
|