summaryrefslogtreecommitdiffstats
path: root/Modules/_curses_panel.c
diff options
context:
space:
mode:
authoranimalize <animalize@users.noreply.github.com>2019-02-24 23:18:48 (GMT)
committerInada Naoki <methane@users.noreply.github.com>2019-02-24 23:18:48 (GMT)
commit463572c8beb59fd9d6850440af48a5c5f4c0c0c9 (patch)
tree643a8cee8377a871eac048685b0856c1abebc8bf /Modules/_curses_panel.c
parent9e456bc70e7bc9ee9726d356d7167457e585fd4c (diff)
downloadcpython-463572c8beb59fd9d6850440af48a5c5f4c0c0c9.zip
cpython-463572c8beb59fd9d6850440af48a5c5f4c0c0c9.tar.gz
cpython-463572c8beb59fd9d6850440af48a5c5f4c0c0c9.tar.bz2
bpo-36101: remove non-ascii characters in docstring (GH-12018)
* remove non-ascii characters in docstring * clinic.py emits a warning when docstring has non-ascii character
Diffstat (limited to 'Modules/_curses_panel.c')
-rw-r--r--Modules/_curses_panel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_curses_panel.c b/Modules/_curses_panel.c
index 609718f..e7bbefd 100644
--- a/Modules/_curses_panel.c
+++ b/Modules/_curses_panel.c
@@ -412,12 +412,12 @@ _curses_panel.panel.set_userptr
obj: object
/
-Set the panel’s user pointer to obj.
+Set the panel's user pointer to obj.
[clinic start generated code]*/
static PyObject *
_curses_panel_panel_set_userptr(PyCursesPanelObject *self, PyObject *obj)
-/*[clinic end generated code: output=6fb145b3af88cf4a input=2056be1cd148b05c]*/
+/*[clinic end generated code: output=6fb145b3af88cf4a input=d2c6a9dbefabbf39]*/
{
PyObject *oldobj;
int rc;
@@ -587,12 +587,12 @@ _curses_panel.update_panels
Updates the virtual screen after changes in the panel stack.
-This does not call curses.doupdate(), so you’ll have to do this yourself.
+This does not call curses.doupdate(), so you'll have to do this yourself.
[clinic start generated code]*/
static PyObject *
_curses_panel_update_panels_impl(PyObject *module)
-/*[clinic end generated code: output=2f3b4c2e03d90ded input=a127069202b0a097]*/
+/*[clinic end generated code: output=2f3b4c2e03d90ded input=5299624c9a708621]*/
{
PyCursesInitialised;
update_panels();