From 38f305b9db30757d850703bd4ccb2bf547efd952 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sat, 19 Apr 2025 16:20:46 +0200 Subject: [PATCH] [3.13] Docs: Fix REPL example in `Doc/library/shutil.rst` (GH-132700) (#132728) Docs: Fix REPL example in `Doc/library/shutil.rst` (GH-132700) (cherry picked from commit e154e4db3684696d29725112f0fcc69e05c40cd1) Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> --- Doc/library/shutil.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index 5b5b9ee69b31..544c1e464b3c 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -473,7 +473,7 @@ Directory and files operations This is also applied when *cmd* is a path that contains a directory component:: - >> shutil.which("C:\\Python33\\python") + >>> shutil.which("C:\\Python33\\python") 'C:\\Python33\\python.EXE' .. versionadded:: 3.3 -- 2.47.3