diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-07-09 22:54:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-09 22:54:44 (GMT) |
commit | 3d1c06e8b9eec5fc1ea2ed4dc1ea79c705da8ab8 (patch) | |
tree | 6cc9ad42f9c7189f3a363ec7ba5070a9e43345c6 /Misc/NEWS.d/next/IDLE | |
parent | 0b6169e391ce6468aad711f08ffb829362293ad5 (diff) | |
download | cpython-3d1c06e8b9eec5fc1ea2ed4dc1ea79c705da8ab8.zip cpython-3d1c06e8b9eec5fc1ea2ed4dc1ea79c705da8ab8.tar.gz cpython-3d1c06e8b9eec5fc1ea2ed4dc1ea79c705da8ab8.tar.bz2 |
bpo-37765: Add keywords to IDLE tab completions (GH-15138)
Keywords are present in the main module tab completion lists generated by rlcompleter, which is used by REPLs on *nix. Add all keywords to IDLE's main module name list except those already added from builtins (True, False, and None) . This list may also be used by Show Completions on the Edit menu, and its hot key.
Rewrite Completions doc.
Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
(cherry picked from commit bce2eb4646021910aa4074d86f44a09b32d0b2b2)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Misc/NEWS.d/next/IDLE')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2020-07-07-18-44-30.bpo-37765.umc1o8.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2020-07-07-18-44-30.bpo-37765.umc1o8.rst b/Misc/NEWS.d/next/IDLE/2020-07-07-18-44-30.bpo-37765.umc1o8.rst new file mode 100644 index 0000000..f8b53ca --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2020-07-07-18-44-30.bpo-37765.umc1o8.rst @@ -0,0 +1,2 @@ +Add keywords to module name completion list. Rewrite Completions +section of IDLE doc. |