diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2021-10-16 22:44:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-16 22:44:00 (GMT) |
commit | 42ac06dcd234bdda989dcfe854ac5173337024c9 (patch) | |
tree | c85c0b31fa39b9153f9144d0bb3bcaeba31ce568 /Misc | |
parent | b9cdd0fb9c463c2503a4d854bb6529a9db58fe1b (diff) | |
download | cpython-42ac06dcd234bdda989dcfe854ac5173337024c9.zip cpython-42ac06dcd234bdda989dcfe854ac5173337024c9.tar.gz cpython-42ac06dcd234bdda989dcfe854ac5173337024c9.tar.bz2 |
bpo-45495: Add 'case' and 'match' to IDLE completions list. (GH-29000)
Since the keyword list is frozen, only compute it once per
session. The colorizer already handles context keywords.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2021-10-16-17-20-32.bpo-45495.ST8RFt.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2021-10-16-17-20-32.bpo-45495.ST8RFt.rst b/Misc/NEWS.d/next/IDLE/2021-10-16-17-20-32.bpo-45495.ST8RFt.rst new file mode 100644 index 0000000..3868f8d --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2021-10-16-17-20-32.bpo-45495.ST8RFt.rst @@ -0,0 +1 @@ +Add context keywords 'case' and 'match' to completions list. |