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 /Python/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 'Python/clinic')
-rw-r--r-- | Python/clinic/context.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/clinic/context.c.h b/Python/clinic/context.c.h index bbe19db..eedfc88 100644 --- a/Python/clinic/context.c.h +++ b/Python/clinic/context.c.h @@ -82,7 +82,7 @@ PyDoc_STRVAR(_contextvars_Context_values__doc__, "values($self, /)\n" "--\n" "\n" -"Return a list of all variables’ values in the context object."); +"Return a list of all variables\' values in the context object."); #define _CONTEXTVARS_CONTEXT_VALUES_METHODDEF \ {"values", (PyCFunction)_contextvars_Context_values, METH_NOARGS, _contextvars_Context_values__doc__}, @@ -177,4 +177,4 @@ PyDoc_STRVAR(_contextvars_ContextVar_reset__doc__, #define _CONTEXTVARS_CONTEXTVAR_RESET_METHODDEF \ {"reset", (PyCFunction)_contextvars_ContextVar_reset, METH_O, _contextvars_ContextVar_reset__doc__}, -/*[clinic end generated code: output=67c3a8f76b6cf4e7 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=a86b66e1516c25d4 input=a9049054013a1b77]*/ |