curses.ascii.isgraph(c) Checks for ASCII any printable character except space.
curses.ascii.ismeta(c) Checks for a non-ASCII character (ordinal values 0x80 and above).
curses.ascii.isalpha(c) Checks for an ASCII alphabetic character; it is equivalent to isupper(c) or islower(c).
curses.ascii.isblank(c) Checks for an ASCII whitespace character; space or horizontal tab.
curses.ascii.iscntrl(c) Checks for an ASCII control character (in the range 0x00 to 0x1f or 0x7f).
curses.ascii.ascii(c) Return the ASCII value corresponding to the low 7 bits of c.
curses.ascii.isalnum(c) Checks for an ASCII alphanumeric character; it is equivalent to isalpha(c) or isdigit(c).
curses.ascii.isascii(c) Checks for a character value that fits in the 7-bit ASCII set.
curses.ascii.controlnames A 33-element string array that contains the ASCII mnemonics for the thirty-two ASCII control characters from 0 (NUL) to 0x1f (US), in order, plus the mnemonic SP for the space character.
curses.ascii.ctrl(c) Return the control character corresponding to the given character (the character bit value is bitwise-anded with 0x1f).
Page 556 of 663