File tree Expand file tree Collapse file tree 3 files changed +115
-109
lines changed Expand file tree Collapse file tree 3 files changed +115
-109
lines changed Original file line number Diff line number Diff line change @@ -176,14 +176,12 @@ C library:
176
176
177
177
Checks for a non-ASCII character (ordinal values 0x80 and above).
178
178
179
- These functions accept either integers or strings; when the argument is a
179
+ These functions accept either integers or single-character strings; when the argument is a
180
180
string, it is first converted using the built-in function :func: `ord `.
181
181
182
- Note that all these functions check ordinal bit values derived from the first
182
+ Note that all these functions check ordinal bit values derived from the
183
183
character of the string you pass in; they do not actually know anything about
184
- the host machine's character encoding. For functions that know about the
185
- character encoding (and handle internationalization properly) see the
186
- :mod: `string ` module.
184
+ the host machine's character encoding.
187
185
188
186
The following two functions take either a single-character string or integer
189
187
byte value; they return a value of the same type.
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ Panel objects have the following methods:
74
74
75
75
.. method :: Panel.hidden()
76
76
77
- Returns true if the panel is hidden (not visible), false otherwise.
77
+ Returns `` True `` if the panel is hidden (not visible), `` False `` otherwise.
78
78
79
79
80
80
.. method :: Panel.hide()
You can’t perform that action at this time.
0 commit comments