setdoc 1.3.0__tar.gz → 1.3.2__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 (25) hide show
  1. {setdoc-1.3.0/src/setdoc.egg-info → setdoc-1.3.2}/PKG-INFO +1 -1
  2. {setdoc-1.3.0 → setdoc-1.3.2}/pyproject.toml +1 -1
  3. setdoc-1.3.2/src/setdoc/__init__.py +1 -0
  4. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc/_utils/cfg.toml +3 -0
  5. {setdoc-1.3.0 → setdoc-1.3.2/src/setdoc.egg-info}/PKG-INFO +1 -1
  6. setdoc-1.3.0/src/setdoc/__init__.py +0 -2
  7. {setdoc-1.3.0 → setdoc-1.3.2}/LICENSE.txt +0 -0
  8. {setdoc-1.3.0 → setdoc-1.3.2}/MANIFEST.in +0 -0
  9. {setdoc-1.3.0 → setdoc-1.3.2}/README.rst +0 -0
  10. {setdoc-1.3.0 → setdoc-1.3.2}/docs/v1.0.rst +0 -0
  11. {setdoc-1.3.0 → setdoc-1.3.2}/docs/v1.1.rst +0 -0
  12. {setdoc-1.3.0 → setdoc-1.3.2}/docs/v1.2.rst +0 -0
  13. {setdoc-1.3.0 → setdoc-1.3.2}/docs/v1.3.rst +0 -0
  14. {setdoc-1.3.0 → setdoc-1.3.2}/setup.cfg +0 -0
  15. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc/_utils/__init__.py +0 -0
  16. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc/core/SetDoc.py +0 -0
  17. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc/core/__init__.py +0 -0
  18. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc/core/basic.py +0 -0
  19. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc/core/getbasicdoc.py +0 -0
  20. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc/py.typed +0 -0
  21. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc/tests/__init__.py +0 -0
  22. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc/tests/test_core.py +0 -0
  23. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc.egg-info/SOURCES.txt +0 -0
  24. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc.egg-info/dependency_links.txt +0 -0
  25. {setdoc-1.3.0 → setdoc-1.3.2}/src/setdoc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: setdoc
3
- Version: 1.3.0
3
+ Version: 1.3.2
4
4
  Summary: This project helps to set the doc string.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License-Expression: MIT
@@ -27,7 +27,7 @@ license-files = [
27
27
  name = "setdoc"
28
28
  readme = "README.rst"
29
29
  requires-python = ">=3.11"
30
- version = "1.3.0"
30
+ version = "1.3.2"
31
31
 
32
32
  [project.urls]
33
33
  Download = "https://pypi.org/project/setdoc/#files"
@@ -0,0 +1 @@
1
+ from setdoc.core import *
@@ -83,4 +83,7 @@ insert = "This method inserts value at index."
83
83
  isdisjoint = "This method determines if self and other have no intersection."
84
84
  issubset = "This method determines if self is a subset of other."
85
85
  issuperset = "This method determines if self is a superset of other."
86
+ items = "This method returns all defined key-value-pairs."
87
+ keys = "This method returns all keys with a defined value."
86
88
  setdefault = "This method returns the value of an item after guaranteeing its existence."
89
+ values = This method returns all values with a defined key."
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: setdoc
3
- Version: 1.3.0
3
+ Version: 1.3.2
4
4
  Summary: This project helps to set the doc string.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License-Expression: MIT
@@ -1,2 +0,0 @@
1
- from setdoc.core import *
2
- from setdoc.tests import *
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