setdoc 0.1.0__tar.gz → 0.1.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.
- {setdoc-0.1.0/src/setdoc.egg-info → setdoc-0.1.2}/PKG-INFO +2 -2
- setdoc-0.1.2/README.rst +5 -0
- {setdoc-0.1.0 → setdoc-0.1.2}/pyproject.toml +1 -1
- {setdoc-0.1.0 → setdoc-0.1.2}/src/setdoc/core.py +2 -0
- {setdoc-0.1.0 → setdoc-0.1.2/src/setdoc.egg-info}/PKG-INFO +2 -2
- setdoc-0.1.0/README.rst +0 -5
- {setdoc-0.1.0 → setdoc-0.1.2}/LICENSE.txt +0 -0
- {setdoc-0.1.0 → setdoc-0.1.2}/MANIFEST.in +0 -0
- {setdoc-0.1.0 → setdoc-0.1.2}/setup.cfg +0 -0
- {setdoc-0.1.0 → setdoc-0.1.2}/src/setdoc/__init__.py +0 -0
- {setdoc-0.1.0 → setdoc-0.1.2}/src/setdoc/tests/__init__.py +0 -0
- {setdoc-0.1.0 → setdoc-0.1.2}/src/setdoc/tests/test_1984.py +0 -0
- {setdoc-0.1.0 → setdoc-0.1.2}/src/setdoc/tests/test_core.py +0 -0
- {setdoc-0.1.0 → setdoc-0.1.2}/src/setdoc.egg-info/SOURCES.txt +0 -0
- {setdoc-0.1.0 → setdoc-0.1.2}/src/setdoc.egg-info/dependency_links.txt +0 -0
- {setdoc-0.1.0 → setdoc-0.1.2}/src/setdoc.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: setdoc
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Set the doc string.
|
|
5
5
|
Author-email: Johannes <johannes-programming@mailfence.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
@@ -42,4 +42,4 @@ License-File: LICENSE.txt
|
|
|
42
42
|
setdoc
|
|
43
43
|
======
|
|
44
44
|
|
|
45
|
-
Visit the website `
|
|
45
|
+
Visit the website `https://setdoc.johannes-programming.online <https://setdoc.johannes-programming.online>`_ for more information.
|
setdoc-0.1.2/README.rst
ADDED
|
@@ -6,8 +6,10 @@ __all__ = ["setdoc"]
|
|
|
6
6
|
|
|
7
7
|
@dataclasses.dataclass
|
|
8
8
|
class setdoc:
|
|
9
|
+
"A class to set doc strings."
|
|
9
10
|
doc: Any
|
|
10
11
|
|
|
11
12
|
def __call__(self, target: Any) -> Any:
|
|
13
|
+
"Set the doc string of the passed target " "to the value stored in the doc field " "of the setdoc object."
|
|
12
14
|
target.__doc__ = self.doc
|
|
13
15
|
return target
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: setdoc
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Set the doc string.
|
|
5
5
|
Author-email: Johannes <johannes-programming@mailfence.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
@@ -42,4 +42,4 @@ License-File: LICENSE.txt
|
|
|
42
42
|
setdoc
|
|
43
43
|
======
|
|
44
44
|
|
|
45
|
-
Visit the website `
|
|
45
|
+
Visit the website `https://setdoc.johannes-programming.online <https://setdoc.johannes-programming.online>`_ for more information.
|
setdoc-0.1.0/README.rst
DELETED
|
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
|