[issue7775] str.rpartition(sep) -> (tail, sep, head)

2010-01-25 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed in r77743 (trunk), r77744 (release26-maint), r77745 (py3k) and r77746 (release31-maint), thanks for the patches! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Pyth

[issue7775] str.rpartition(sep) -> (tail, sep, head)

2010-01-25 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: georg.brandl -> ezio.melotti nosy: +ezio.melotti priority: -> normal stage: needs patch -> patch review ___ Python tracker ___

[issue7775] str.rpartition(sep) -> (tail, sep, head)

2010-01-25 Thread July Tikhonov
Changes by July Tikhonov : Added file: http://bugs.python.org/file15999/rpartition-docstrings-py3k.diff ___ Python tracker ___ ___ Python-bugs-

[issue7775] str.rpartition(sep) -> (tail, sep, head)

2010-01-25 Thread July Tikhonov
July Tikhonov added the comment: Not only str, but also bytearray, unicode, and bytes. -- keywords: +patch nosy: +july Added file: http://bugs.python.org/file15998/rpartition-docstrings-trunk.diff ___ Python tracker

[issue7775] str.rpartition(sep) -> (tail, sep, head)

2010-01-25 Thread Florent Xicluna
Changes by Florent Xicluna : -- stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue7775] str.rpartition(sep) -> (tail, sep, head)

2010-01-25 Thread kai zhu
kai zhu added the comment: documentation bug should be changed to: "S.rpartition(sep) -> (head, sep, tail)" >>> help(str.rpartition) Help on method_descriptor: rpartition(...) S.rpartition(sep) -> (tail, sep, head) Search for the separator sep in S, starting at the end of S, and re

[issue7775] str.rpartition(sep) -> (tail, sep, head)

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna : -- type: -> behavior versions: +Python 2.6, Python 2.7, Python 3.2 ___ Python tracker ___ ___ Python-bugs

[issue7775] str.rpartition(sep) -> (tail, sep, head)

2010-01-24 Thread Chris Withers
New submission from Chris Withers : Can you please provide information about the actual problem you're reporting? -- nosy: +cjw296 ___ Python tracker ___ _

[issue7775] str.rpartition(sep) -> (tail, sep, head)

2010-01-24 Thread kai zhu
Changes by kai zhu : -- assignee: georg.brandl components: Documentation nosy: georg.brandl, kaizhu severity: normal status: open title: str.rpartition(sep) -> (tail, sep, head) versions: Python 3.1 ___ Python tracker