From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 25 Feb 2019 16:27:54 +0000 (-0800) Subject: Remove empty Dictionaries section from programming FAQ (GH-12026) X-Git-Tag: v3.7.3rc1~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a1caf65d5ef5c1b5aaf505a2a075ec15b6f7dc39;p=thirdparty%2FPython%2Fcpython.git Remove empty Dictionaries section from programming FAQ (GH-12026) (cherry picked from commit 55e335d7d59be44819c6b672d258e2d5feb1e633) Co-authored-by: Andre Delfino --- diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 047812e6e036..7bc00ff7e69d 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1317,9 +1317,6 @@ The ``__iadd__`` succeeds, and thus the list is extended, but even though that final assignment still results in an error, because tuples are immutable. -Dictionaries -============ - I want to do a complicated sort: can you do a Schwartzian Transform in Python? ------------------------------------------------------------------------------