Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
It's called frozendict
not frozenmap
  • Loading branch information
jonathandung authored Mar 19, 2026
commit c34da916ae2dc1d26bae13ce4572f283991a9a24
2 changes: 1 addition & 1 deletion Lib/curses/has_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Table mapping curses keys to the terminfo capability name

_capability_names = frozenmap({
_capability_names = frozendict({
_curses.KEY_A1: 'ka1',
_curses.KEY_A3: 'ka3',
_curses.KEY_B2: 'kb2',
Expand Down
Loading