[issue4669] bytes,join and bytearray.join not in manual; help for bytes.join is wrong.

2008-12-27 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Closing as works for me. -- resolution: - works for me status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4669 ___

[issue4669] bytes,join and bytearray.join not in manual; help for bytes.join is wrong.

2008-12-19 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I am puzzled as to what you think is missing in the manual. Bytes and Byte Array Methods Bytes and bytearray objects, being “strings of bytes”, have all methods found on strings, with the exception of encode(), format() and isidentifier(),

[issue4669] bytes,join and bytearray.join not in manual; help for bytes.join is wrong.

2008-12-19 Thread John Machin
John Machin sjmac...@users.sourceforge.net added the comment: Terry, you are right. I missed that. My report was based on looking via the index and finding only (str method), no (byte[sarray] method). ___ Python tracker rep...@bugs.python.org

[issue4669] bytes,join and bytearray.join not in manual; help for bytes.join is wrong.

2008-12-15 Thread John Machin
New submission from John Machin sjmac...@users.sourceforge.net: These methods are parallel to str.join, seem to work as expected, and have help entries. However there is nothing in the Library Reference Manual about them. help(bytearray.join) Help on method_descriptor: join(...)