setdoc 1.2.17__tar.gz → 1.2.19__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.2.17/src/setdoc.egg-info → setdoc-1.2.19}/PKG-INFO +1 -1
- {setdoc-1.2.17 → setdoc-1.2.19}/pyproject.toml +2 -2
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc/tests/test_core.py +1 -1
- {setdoc-1.2.17 → setdoc-1.2.19/src/setdoc.egg-info}/PKG-INFO +1 -1
- {setdoc-1.2.17 → setdoc-1.2.19}/LICENSE.txt +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/MANIFEST.in +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/README.rst +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/docs/v1.0.rst +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/docs/v1.1.rst +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/docs/v1.2.rst +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/setup.cfg +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc/__init__.py +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc/_utils/__init__.py +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc/_utils/cfg.toml +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc/core/SetDoc.py +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc/core/__init__.py +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc/core/basic.py +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc/core/getbasicdoc.py +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc/py.typed +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc/tests/__init__.py +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc.egg-info/SOURCES.txt +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc.egg-info/dependency_links.txt +0 -0
- {setdoc-1.2.17 → setdoc-1.2.19}/src/setdoc.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[build-system]
|
|
2
2
|
build-backend = "setuptools.build_meta"
|
|
3
3
|
requires = [
|
|
4
|
-
"setuptools>=
|
|
4
|
+
"setuptools>=77.0",
|
|
5
5
|
]
|
|
6
6
|
|
|
7
7
|
[project]
|
|
@@ -27,7 +27,7 @@ license-files = [
|
|
|
27
27
|
name = "setdoc"
|
|
28
28
|
readme = "README.rst"
|
|
29
29
|
requires-python = ">=3.11"
|
|
30
|
-
version = "1.2.
|
|
30
|
+
version = "1.2.19"
|
|
31
31
|
|
|
32
32
|
[project.urls]
|
|
33
33
|
Download = "https://pypi.org/project/setdoc/#files"
|
|
@@ -92,7 +92,7 @@ class TestSetDocDecorator(unittest.TestCase):
|
|
|
92
92
|
|
|
93
93
|
def test_setdoc_on_nested_function(self: Self) -> None:
|
|
94
94
|
# Test the decorator on a nested function
|
|
95
|
-
def outer_func() ->
|
|
95
|
+
def outer_func() -> types.FunctionType:
|
|
96
96
|
@setdoc("This is a nested function")
|
|
97
97
|
def inner_func() -> None:
|
|
98
98
|
pass
|
|
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
|
|
File without changes
|