diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-10-07 21:48:36 (GMT) |
---|---|---|
committer | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-10-07 21:48:36 (GMT) |
commit | 83fe2e1c22e6ff72a308e82e1e24ca03f8c51339 (patch) | |
tree | f8e8071faf6e7d06b812c8fa9090c41c57ad91d3 /Objects/sliceobject.c | |
parent | c3e5b10ae76c3ffe8672e91a5478a19e35b60220 (diff) | |
download | cpython-83fe2e1c22e6ff72a308e82e1e24ca03f8c51339.zip cpython-83fe2e1c22e6ff72a308e82e1e24ca03f8c51339.tar.gz cpython-83fe2e1c22e6ff72a308e82e1e24ca03f8c51339.tar.bz2 |
Issue #14783: Improve int() docstring and also str(), range(), and slice().
This commit rewrites the docstring for int() to incorporate the documentation
changes made in issue #16036. It also switches the docstrings for int(),
str(), range(), and slice() to use multi-line signatures.
Diffstat (limited to 'Objects/sliceobject.c')
-rw-r--r-- | Objects/sliceobject.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Objects/sliceobject.c b/Objects/sliceobject.c index d7b97c9..0f4b647 100644 --- a/Objects/sliceobject.c +++ b/Objects/sliceobject.c @@ -221,7 +221,8 @@ slice_new(PyTypeObject *type, PyObject *args, PyObject *kw) } PyDoc_STRVAR(slice_doc, -"slice([start,] stop[, step])\n\ +"slice(stop)\n\ +slice(start, stop[, step])\n\ \n\ Create a slice object. This is used for extended slicing (e.g. a[0:10:2])."); |