From 210bd2a50dddc10119c4f68329e9e683d2f82e0b Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Wed, 30 Oct 2024 18:35:10 +0100 Subject: [PATCH] [3.13] gh-85583: Add f-string index in tutorial/inputoutput.rst (GH-21681) (GH-126191) gh-85583: Add f-string index in tutorial/inputoutput.rst (GH-21681) * bpo-41411 fstring index in tutorial/inputoutput To assist in searching for fstrings I have added an index * Add newline --------- (cherry picked from commit a3443c0e22a8623afe4c0518433b28afbc3a6df6) Co-authored-by: amaajemyfren <32741226+amaajemyfren@users.noreply.github.com> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Carol Willing --- Doc/tutorial/inputoutput.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst index 2e6fd419b211..35b8c7cd8eb0 100644 --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -100,6 +100,13 @@ yet another way to substitute values into strings, using placeholders like ``$x`` and replacing them with values from a dictionary, but offers much less control of the formatting. +.. index:: + single: formatted string literal + single: interpolated string literal + single: string; formatted literal + single: string; interpolated literal + single: f-string + single: fstring .. _tut-f-strings: -- 2.47.3