Fix #13834: strip() strips leading and trailing whitespace.

This commit is contained in:
Georg Brandl 2012-01-22 21:31:21 +01:00
parent 886455cc4e
commit beca27a394
1 changed files with 1 additions and 1 deletions

View File

@ -1437,7 +1437,7 @@ PyDoc_STRVAR(strip__doc__,
"B.strip([bytes]) -> bytes\n\
\n\
Strip leading and trailing bytes contained in the argument.\n\
If the argument is omitted, strip trailing ASCII whitespace.");
If the argument is omitted, strip leading and trailing ASCII whitespace.");
static PyObject *
bytes_strip(PyBytesObject *self, PyObject *args)
{