[issue16252] bytes and bytearray methods are undocumented

2014-09-27 Thread Berker Peksag
Berker Peksag added the comment: Fixed in issue 21777. -- nosy: +berker.peksag resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker __

[issue16252] bytes and bytearray methods are undocumented

2012-10-16 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16252] bytes and bytearray methods are undocumented

2012-10-16 Thread Chris Jerdonek
Chris Jerdonek added the comment: > I couldn't find any doc for bytes.join, etc. One of the contributing factors to this is that bytes doesn't have its own class entry in the same way that, for example, list, dict, and memoryview have. This creates a stumbling block for readers because they ha

[issue16252] bytes and bytearray methods are undocumented

2012-10-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: For the record, in the SSL socket docs, I listed the supported methods explicitly (http://docs.python.org/dev/library/ssl.html#ssl-sockets). I think it makes things clearer for the reader. -- ___ Python tracker

[issue16252] bytes and bytearray methods are undocumented

2012-10-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ah, right. I guess a hyperlink to those methods wouldn't hurt, though :) -- ___ Python tracker ___ _

[issue16252] bytes and bytearray methods are undocumented

2012-10-16 Thread Ezio Melotti
Ezio Melotti added the comment: http://docs.python.org/dev/library/stdtypes.html#bytes-and-bytearray-operations """ Due to the common use of ASCII text as the basis for binary protocols, bytes and bytearray objects provide almost all methods found on text strings, with the exceptions of: """

[issue16252] bytes and bytearray methods are undocumented

2012-10-16 Thread Antoine Pitrou
New submission from Antoine Pitrou: Everything is in the title. I couldn't find any doc for bytes.join, etc. (while str methods are documented in library/stdtypes.html#string-methods). -- assignee: docs@python components: Documentation messages: 173074 nosy: docs@python, pitrou priority