From 2faf2172872ca3e0dc4bd424675fd7bfa6a2272e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=91=D0=BB?= =?UTF-8?q?=D0=B8=D0=BD=D0=BE=D0=B2?= Date: Wed, 25 Feb 2026 21:11:29 +0300 Subject: [PATCH 1/2] Update README example to show staticmethod decorator output --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a51b5f8..03d532a 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ class SomeClass: ... print(getclearsource(SomeClass.method)) +#> @staticmethod #> def method(): #> ... ``` From 7dfce6727c861d3e84a44ecd7eec6b4b433bb777 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=91=D0=BB?= =?UTF-8?q?=D0=B8=D0=BD=D0=BE=D0=B2?= Date: Wed, 25 Feb 2026 21:13:36 +0300 Subject: [PATCH 2/2] Bump version to 0.0.2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5d8d5de..286ed89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "getsources" -version = "0.0.1" +version = "0.0.2" authors = [ { name="Evgeniy Blinov", email="zheni-b@yandex.ru" }, ]