diff options
author | Georg Brandl <georg@python.org> | 2012-01-22 21:31:39 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-01-22 21:31:39 +0100 |
commit | 20f6bc20bd3024b1b710d2833a74f2a7f2ba8571 (patch) | |
tree | 97e4722feee2a1d64562e1f7fb4096d6758693dd /Objects/bytesobject.c | |
parent | ce798520778e9cb41adfdc4f0a3cb5085a0b11be (diff) | |
parent | beca27a394d4e3988a4c08e670a5b42f1e7eb4a0 (diff) | |
download | cpython-git-20f6bc20bd3024b1b710d2833a74f2a7f2ba8571.tar.gz |
merge with 3.2
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r-- | Objects/bytesobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c index 9cd16f691d..a98cdcff71 100644 --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -1426,7 +1426,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) { |