Fixed documentation of functions with const char* arguments.

This commit is contained in:
Serhiy Storchaka 2015-06-21 17:11:21 +03:00
parent 5fa22fc088
commit 03863d2b29
10 changed files with 19 additions and 19 deletions

View file

@ -88,7 +88,7 @@ written using these routines?
:exc:`TypeError`) and returns *NULL*.
.. c:function:: PyObject* PyMarshal_ReadObjectFromString(char *string, Py_ssize_t len)
.. c:function:: PyObject* PyMarshal_ReadObjectFromString(const char *string, Py_ssize_t len)
Return a Python object from the data stream in a character buffer
containing *len* bytes pointed to by *string*.