mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
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
This commit is contained in:
parent
9e456bc70e
commit
463572c8be
5 changed files with 14 additions and 11 deletions
|
@ -592,12 +592,12 @@ _contextvars_Context_keys_impl(PyContext *self)
|
|||
/*[clinic input]
|
||||
_contextvars.Context.values
|
||||
|
||||
Return a list of all variables’ values in the context object.
|
||||
Return a list of all variables' values in the context object.
|
||||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
_contextvars_Context_values_impl(PyContext *self)
|
||||
/*[clinic end generated code: output=d286dabfc8db6dde input=6c3d08639ba3bf67]*/
|
||||
/*[clinic end generated code: output=d286dabfc8db6dde input=ce8075d04a6ea526]*/
|
||||
{
|
||||
return _PyHamt_NewIterValues(self->ctx_vars);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue