From 6fad3e6b49f6a9f8b8a6635c41371e4451479f86 Mon Sep 17 00:00:00 2001 From: Antoine <43954001+awecx@users.noreply.github.com> Date: Sat, 23 May 2020 02:29:34 +0200 Subject: [PATCH] bpo-40552 Add 'users' variable in code sample (tutorial 4.2). (GH-19992) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add 'users' variable in code sample. * 📜🤖 Added by blurb_it. Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> --- Doc/tutorial/controlflow.rst | 3 +++ .../Documentation/2020-05-09-12-10-31.bpo-40552._0uB73.rst | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 Misc/NEWS.d/next/Documentation/2020-05-09-12-10-31.bpo-40552._0uB73.rst diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index f05f5edd5cc..26de866aab9 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -70,6 +70,9 @@ Code that modifies a collection while iterating over that same collection can be tricky to get right. Instead, it is usually more straight-forward to loop over a copy of the collection or to create a new collection:: + # Create a sample collection + users = {'Hans': 'active', 'Éléonore': 'inactive', '景太郎': 'active'} + # Strategy: Iterate over a copy for user, status in users.copy().items(): if status == 'inactive': diff --git a/Misc/NEWS.d/next/Documentation/2020-05-09-12-10-31.bpo-40552._0uB73.rst b/Misc/NEWS.d/next/Documentation/2020-05-09-12-10-31.bpo-40552._0uB73.rst new file mode 100644 index 00000000000..5ed9c31834a --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2020-05-09-12-10-31.bpo-40552._0uB73.rst @@ -0,0 +1,2 @@ +Fix in tutorial section 4.2. +Code snippet is now correct. \ No newline at end of file