gh-146153: Use frozendict in pure python fallback for curses.has_key#146154
gh-146153: Use frozendict in pure python fallback for curses.has_key#146154jonathandung wants to merge 13 commits intopython:mainfrom
frozendict in pure python fallback for curses.has_key#146154Conversation
|
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
|
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
frozenmap in pure python fallback for curses.has_keyfrozendict in pure python fallback for curses.has_key
| @@ -0,0 +1 @@ | |||
| Changed the ``_capability_names`` dictionary in :mod:`curses.has_key` to a :class:`frozendict`, since it is private and requires no modifications. Contributed by Jonathan Dung. | |||
There was a problem hiding this comment.
I don't think that this change impacts end users since the dictionary is private. So I suggest removing this NEWS entry.
There was a problem hiding this comment.
Please add the skip news label
|
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
|
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
Closes #146153.
frozendictin Lib/curses/has_key.py #146153