From 2511fce2ef655f73cadb0b7ea66952a8517315e4 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Wed, 5 Nov 2025 01:11:42 +0100 Subject: [PATCH] [3.14] gh-141007: update string module source code link (GH-141008) (#141030) gh-141007: update string module source code link (GH-141008) In 3.14, the former string.py became `__init__.py` within a new `string` directory that also contains a new submodule file, `templatelib.py`. (cherry picked from commit fa02422918ac3251cdf88a626f90af260bf5224a) Co-authored-by: alex <30386655+alexomics@users.noreply.github.com> --- Doc/library/string.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 6336a0ec47b..58c836c7382 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -4,7 +4,7 @@ .. module:: string :synopsis: Common string operations. -**Source code:** :source:`Lib/string.py` +**Source code:** :source:`Lib/string/__init__.py` --------------