Skip to content

Commit 7842164

Browse files
Deploy preview for PR 1231 🛫
1 parent 8a26df0 commit 7842164

594 files changed

Lines changed: 22504 additions & 6987 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pr-preview/pr-1231/_sources/library/curses.ascii.rst.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ C library:
117117

118118
.. function:: isblank(c)
119119

120-
Checks for an ASCII whitespace character; space or horizontal tab.
120+
Checks for an ASCII blank character; space or horizontal tab.
121121

122122

123123
.. function:: iscntrl(c)
@@ -171,7 +171,8 @@ C library:
171171

172172
.. function:: isctrl(c)
173173

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

176177

177178
.. function:: ismeta(c)

pr-preview/pr-1231/_sources/library/curses.panel.rst.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ The module :mod:`!curses.panel` defines the following functions:
2828

2929
.. function:: new_panel(win)
3030

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

@@ -46,7 +47,7 @@ The module :mod:`!curses.panel` defines the following functions:
4647

4748
.. _curses-panel-objects:
4849

49-
Panel Objects
50+
Panel objects
5051
-------------
5152

5253
Panel objects, as returned by :func:`new_panel` above, are windows with a
@@ -101,7 +102,8 @@ Panel objects have the following methods:
101102

102103
.. method:: Panel.show()
103104

104-
Display the panel (which might have been hidden).
105+
Display the panel (which might have been hidden), placing it on top of
106+
the panel stack.
105107

106108

107109
.. method:: Panel.top()

0 commit comments

Comments
 (0)