Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 3 additions & 2 deletions Doc/library/curses.ascii.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ C library:

.. function:: isblank(c)

Checks for an ASCII whitespace character; space or horizontal tab.
Checks for an ASCII blank character; space or horizontal tab.


.. function:: iscntrl(c)
Expand Down Expand Up @@ -171,7 +171,8 @@ C library:

.. function:: isctrl(c)

Checks for an ASCII control character (ordinal values 0 to 31).
Checks for an ASCII control character (ordinal values 0 to 31). Unlike
:func:`iscntrl`, this does not include the delete character (0x7f).


.. function:: ismeta(c)
Expand Down
6 changes: 4 additions & 2 deletions Doc/library/curses.panel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ The module :mod:`!curses.panel` defines the following functions:

.. function:: new_panel(win)

Returns a panel object, associating it with the given window *win*. Be aware
Returns a panel object, associating it with the given window *win* and
placing the new panel on top of the panel stack. Be aware
that you need to keep the returned panel object referenced explicitly. If you
don't, the panel object is garbage collected and removed from the panel stack.

Expand Down Expand Up @@ -101,7 +102,8 @@ Panel objects have the following methods:

.. method:: Panel.show()

Display the panel (which might have been hidden).
Display the panel (which might have been hidden), placing it on top of
the panel stack.


.. method:: Panel.top()
Expand Down
Loading
Loading