diff options
| author | Raymond Hettinger <python@rcn.com> | 2003-10-26 17:20:07 +0000 |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2003-10-26 17:20:07 +0000 |
| commit | 9c7ed4c6dfe9ad33538014249142a99a90279b1a (patch) | |
| tree | 89895ca017146f3b91bd6fc3c23b52a8d1b016b4 | |
| parent | cca3491dbe5c8289f170b3a4417c7a73f80cfa80 (diff) | |
| download | cpython-git-9c7ed4c6dfe9ad33538014249142a99a90279b1a.tar.gz | |
Document that varlist can be NULL.
| -rw-r--r-- | Doc/api/concrete.tex | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 7e784c79b1..b00b9151ad 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -1741,8 +1741,10 @@ format. PyObject *itemlist} Sets the slice of \var{list} between \var{low} and \var{high} to the contents of \var{itemlist}. Analogous to - \code{\var{list}[\var{low}:\var{high}] = \var{itemlist}}. Returns - \code{0} on success, \code{-1} on failure. + \code{\var{list}[\var{low}:\var{high}] = \var{itemlist}}. + The \var{itemlist} may be \NULL{}, indicating the assignment + of an empty list (slice deletion). + Returns \code{0} on success, \code{-1} on failure. \end{cfuncdesc} \begin{cfuncdesc}{int}{PyList_Sort}{PyObject *list} |
