str-to-obj 2024.2__tar.gz → 2024.3__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 (34) hide show
  1. {str_to_obj-2024.2 → str_to_obj-2024.3}/PKG-INFO +1 -1
  2. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/__init__.py +2 -0
  3. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/version.py +1 -1
  4. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj.egg-info/PKG-INFO +1 -1
  5. {str_to_obj-2024.2 → str_to_obj-2024.3}/MANIFEST.in +0 -0
  6. {str_to_obj-2024.2 → str_to_obj-2024.3}/README-COPYRIGHT-utf8.txt +0 -0
  7. {str_to_obj-2024.2 → str_to_obj-2024.3}/README-LICENCE-utf8.txt +0 -0
  8. {str_to_obj-2024.2 → str_to_obj-2024.3}/README.rst +0 -0
  9. {str_to_obj-2024.2 → str_to_obj-2024.3}/documentation/wiki/description.asciidoc +0 -0
  10. {str_to_obj-2024.2 → str_to_obj-2024.3}/pyproject.toml +0 -0
  11. {str_to_obj-2024.2 → str_to_obj-2024.3}/setup.cfg +0 -0
  12. {str_to_obj-2024.2 → str_to_obj-2024.3}/setup.py +0 -0
  13. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/catalog/boolean.py +0 -0
  14. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/catalog/callable.py +0 -0
  15. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/catalog/choices.py +0 -0
  16. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/catalog/collection.py +0 -0
  17. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/catalog/number.py +0 -0
  18. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/catalog/path.py +0 -0
  19. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/interface/console.py +0 -0
  20. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/main.py +0 -0
  21. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/runtime/type.py +0 -0
  22. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/runtime/value.py +0 -0
  23. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/task/casting.py +0 -0
  24. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/task/comparison.py +0 -0
  25. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/task/inspection.py +0 -0
  26. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/type/annotation.py +0 -0
  27. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/type/hint.py +0 -0
  28. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/type/hint_tree.py +0 -0
  29. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/type/type.py +0 -0
  30. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj/type/value.py +0 -0
  31. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj.egg-info/SOURCES.txt +0 -0
  32. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj.egg-info/dependency_links.txt +0 -0
  33. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj.egg-info/requires.txt +0 -0
  34. {str_to_obj-2024.2 → str_to_obj-2024.3}/str_to_obj.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: str-to-obj
3
- Version: 2024.2
3
+ Version: 2024.3
4
4
  Summary: Convert strings to Python objects guided by (potentially annotated) type hints
5
5
  Home-page: https://src.koda.cnrs.fr/eric.debreuve/str-to-obj/
6
6
  Author: Eric Debreuve
@@ -30,6 +30,8 @@
30
30
  # knowledge of the CeCILL license and that you accept its terms.
31
31
 
32
32
  from str_to_obj.main import ObjectFromStr
33
+ from str_to_obj.runtime.value import INVALID_VALUE
33
34
  from str_to_obj.task.casting import CastValue
34
35
  from str_to_obj.type.annotation import annotation_t
36
+ from str_to_obj.type.type import type_t
35
37
  from str_to_obj.version import __version__
@@ -29,6 +29,6 @@
29
29
  # The fact that you are presently reading this means that you have had
30
30
  # knowledge of the CeCILL license and that you accept its terms.
31
31
 
32
- __version__ = "2024.2"
32
+ __version__ = "2024.3"
33
33
 
34
34
  # TODO: Switch to issue-manager.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: str-to-obj
3
- Version: 2024.2
3
+ Version: 2024.3
4
4
  Summary: Convert strings to Python objects guided by (potentially annotated) type hints
5
5
  Home-page: https://src.koda.cnrs.fr/eric.debreuve/str-to-obj/
6
6
  Author: Eric Debreuve
File without changes
File without changes
File without changes
File without changes
File without changes