diff options
author | Andre Delfino <adelfino@gmail.com> | 2019-02-25 16:22:07 (GMT) |
---|---|---|
committer | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-02-25 16:22:07 (GMT) |
commit | 55e335d7d59be44819c6b672d258e2d5feb1e633 (patch) | |
tree | c7ac360310d3f17053616fb9fde30b6a7c8b2eed /Doc/faq/programming.rst | |
parent | a24107b04c1277e3c1105f98aff5bfa3a98b33a0 (diff) | |
download | cpython-55e335d7d59be44819c6b672d258e2d5feb1e633.zip cpython-55e335d7d59be44819c6b672d258e2d5feb1e633.tar.gz cpython-55e335d7d59be44819c6b672d258e2d5feb1e633.tar.bz2 |
Remove empty Dictionaries section from programming FAQ (GH-12026)
Diffstat (limited to 'Doc/faq/programming.rst')
-rw-r--r-- | Doc/faq/programming.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 047812e..7bc00ff 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? ------------------------------------------------------------------------------ |