diff options
author | animalize <animalize@users.noreply.github.com> | 2019-02-24 23:18:48 (GMT) |
---|---|---|
committer | Inada Naoki <methane@users.noreply.github.com> | 2019-02-24 23:18:48 (GMT) |
commit | 463572c8beb59fd9d6850440af48a5c5f4c0c0c9 (patch) | |
tree | 643a8cee8377a871eac048685b0856c1abebc8bf /Modules/clinic | |
parent | 9e456bc70e7bc9ee9726d356d7167457e585fd4c (diff) | |
download | cpython-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/clinic')
-rw-r--r-- | Modules/clinic/_curses_panel.c.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/clinic/_curses_panel.c.h b/Modules/clinic/_curses_panel.c.h index ed59c3b..0df4420 100644 --- a/Modules/clinic/_curses_panel.c.h +++ b/Modules/clinic/_curses_panel.c.h @@ -228,7 +228,7 @@ PyDoc_STRVAR(_curses_panel_panel_set_userptr__doc__, "set_userptr($self, obj, /)\n" "--\n" "\n" -"Set the panel’s user pointer to obj."); +"Set the panel\'s user pointer to obj."); #define _CURSES_PANEL_PANEL_SET_USERPTR_METHODDEF \ {"set_userptr", (PyCFunction)_curses_panel_panel_set_userptr, METH_O, _curses_panel_panel_set_userptr__doc__}, @@ -322,7 +322,7 @@ PyDoc_STRVAR(_curses_panel_update_panels__doc__, "\n" "Updates the virtual screen after changes in the panel stack.\n" "\n" -"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."); #define _CURSES_PANEL_UPDATE_PANELS_METHODDEF \ {"update_panels", (PyCFunction)_curses_panel_update_panels, METH_NOARGS, _curses_panel_update_panels__doc__}, @@ -335,4 +335,4 @@ _curses_panel_update_panels(PyObject *module, PyObject *Py_UNUSED(ignored)) { return _curses_panel_update_panels_impl(module); } -/*[clinic end generated code: output=ac1f56e6c3d4cc57 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=3cc16062281b7e07 input=a9049054013a1b77]*/ |