setdoc 1.3.4__tar.gz → 1.3.5__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.
- {setdoc-1.3.4/src/setdoc.egg-info → setdoc-1.3.5}/PKG-INFO +1 -1
- {setdoc-1.3.4 → setdoc-1.3.5}/pyproject.toml +1 -1
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc/core/SetDoc.py +5 -3
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc/core/basic.py +5 -2
- setdoc-1.3.5/src/setdoc/typing/SupportsDoc.py +7 -0
- setdoc-1.3.5/src/setdoc/typing/SupportsDocAndName.py +7 -0
- setdoc-1.3.5/src/setdoc/typing/__init__.py +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5/src/setdoc.egg-info}/PKG-INFO +1 -1
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc.egg-info/SOURCES.txt +4 -1
- {setdoc-1.3.4 → setdoc-1.3.5}/LICENSE.txt +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/MANIFEST.in +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/README.rst +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/docs/v1.0.rst +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/docs/v1.1.rst +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/docs/v1.2.rst +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/docs/v1.3.rst +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/setup.cfg +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc/__init__.py +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc/_utils/__init__.py +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc/_utils/cfg.toml +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc/core/__init__.py +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc/core/getbasicdoc.py +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc/py.typed +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc/tests/__init__.py +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc/tests/test_core.py +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc.egg-info/dependency_links.txt +0 -0
- {setdoc-1.3.4 → setdoc-1.3.5}/src/setdoc.egg-info/top_level.txt +0 -0
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import dataclasses
|
|
2
|
-
from typing import
|
|
2
|
+
from typing import Optional, Self, TypeVar
|
|
3
|
+
|
|
4
|
+
from setdoc.typing.SupportsDoc import SupportsDoc
|
|
3
5
|
|
|
4
6
|
__all__ = ["SetDoc"]
|
|
5
7
|
|
|
6
|
-
Target = TypeVar("Target")
|
|
8
|
+
Target = TypeVar("Target", bound=SupportsDoc)
|
|
7
9
|
|
|
8
10
|
|
|
9
11
|
@dataclasses.dataclass
|
|
10
12
|
class SetDoc:
|
|
11
13
|
"This class helps to set doc strings."
|
|
12
14
|
|
|
13
|
-
doc:
|
|
15
|
+
doc: Optional[str]
|
|
14
16
|
|
|
15
17
|
def __call__(self: Self, target: Target) -> Target:
|
|
16
18
|
"This magic method implements calling the current instance. It sets the doc string of the passed target to the value stored in the doc field of the setdoc object."
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
import
|
|
1
|
+
from typing import TypeVar
|
|
2
2
|
|
|
3
3
|
from setdoc.core.getbasicdoc import getbasicdoc
|
|
4
|
+
from setdoc.typing.SupportsDocAndName import SupportsDocAndName
|
|
4
5
|
|
|
5
6
|
__all__ = ["basic"]
|
|
6
7
|
|
|
8
|
+
Value = TypeVar("Value", bound=SupportsDocAndName)
|
|
7
9
|
|
|
8
|
-
|
|
10
|
+
|
|
11
|
+
def basic(value: Value) -> Value:
|
|
9
12
|
"This decorator sets the docstring of the given value to what is suggested by its name."
|
|
10
13
|
value.__doc__ = getbasicdoc(value.__name__)
|
|
11
14
|
return value
|
|
File without changes
|
|
@@ -20,4 +20,7 @@ src/setdoc/core/__init__.py
|
|
|
20
20
|
src/setdoc/core/basic.py
|
|
21
21
|
src/setdoc/core/getbasicdoc.py
|
|
22
22
|
src/setdoc/tests/__init__.py
|
|
23
|
-
src/setdoc/tests/test_core.py
|
|
23
|
+
src/setdoc/tests/test_core.py
|
|
24
|
+
src/setdoc/typing/SupportsDoc.py
|
|
25
|
+
src/setdoc/typing/SupportsDocAndName.py
|
|
26
|
+
src/setdoc/typing/__init__.py
|
|
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
|