From: Antoine <43954001+awecx@users.noreply.github.com> Date: Sat, 23 May 2020 00:29:34 +0000 (+0200) Subject: bpo-40552 Add 'users' variable in code sample (tutorial 4.2). (GH-19992) X-Git-Tag: v3.10.0a1~852 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fad3e6b49f6a9f8b8a6635c41371e4451479f86;p=thirdparty%2FPython%2Fcpython.git bpo-40552 Add 'users' variable in code sample (tutorial 4.2). (GH-19992) * Add 'users' variable in code sample. * 📜🤖 Added by blurb_it. Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> --- diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index f05f5edd5ccc..26de866aab90 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 000000000000..5ed9c31834ac --- /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