This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: In help(bytes.strip) there is no info about leading ASCII whitespace
Type: Stage:
Components: Documentation Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, georg.brandl, py.user, python-dev
Priority: normal Keywords:

Created on 2012-01-21 04:17 by py.user, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg151718 - (view) Author: py.user (py.user) * Date: 2012-01-21 04:17
help(bytes.strip):

strip(...)
    B.strip([bytes]) -> bytes
    
    Strip leading and trailing bytes contained in the argument.
    If the argument is omitted, strip trailing ASCII whitespace.
msg151788 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-01-22 20:31
New changeset 960d93deb8c2 by Georg Brandl in branch '3.2':
Fix #13834: strip() strips leading and trailing whitespace.
http://hg.python.org/cpython/rev/960d93deb8c2
msg151789 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2012-01-22 20:32
Fixed, thanks!
History
Date User Action Args
2022-04-11 14:57:25adminsetgithub: 58042
2012-01-22 20:32:02georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg151789

resolution: fixed
2012-01-22 20:31:46python-devsetnosy: + python-dev
messages: + msg151788
2012-01-21 04:17:08py.usercreate