Issue 17904: bytes should be listed as built-in function for 2.7 (original) (raw)

Created on 2013-05-04 10:34 by flox, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue17904.diff ezio.melotti,2013-05-10 17:33
Messages (6)
msg188349 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2013-05-04 10:34
Looking into the summary table, there's no information about the `bytes` built-in alias for `str`: http://docs.python.org/2/library/functions.html IMHO it should appear in this table (as str, unicode, bytearray) with the appropriate `.. versionadded:`.
msg188852 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-05-10 17:33
Here's a patch. Do you think it should be added under the string signature too? It will make linking easier, but it might be more confusing for users.
msg222025 - (view) Author: Andy Maier (andymaier) * Date: 2014-07-01 12:20
Ezio, what do you mean with "string signature"? For me, the patch looks fine as it is.
msg222026 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2014-07-01 12:25
I mean here: https://docs.python.org/2/library/functions.html#str
msg222049 - (view) Author: Andy Maier (andymaier) * Date: 2014-07-01 16:00
Your patch right now generates the line: New in version 2.6: bytes() has been added as an alias for str() at the end of the paragraph for str(). To me, that is sufficient for the description of str(). If anything, we could add a separate paragraph for bytes(), after the paragraph for bytearray(), e.g. like this: ---------------------------------- .. function:: bytes() Alias for :func:`str`. .. versionadded:: 2.6 ---------------------------------- If that is what you had in mind, I think it is a good idea to add it. Andy
msg367341 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2020-04-27 01:31
As 2.7 has now reached EOL, I'm closing the issue.
History
Date User Action Args
2022-04-11 14:57:45 admin set github: 62104
2020-04-27 01:31:15 zach.ware set status: open -> closednosy: + zach.waremessages: + resolution: out of datestage: patch review -> resolved
2014-07-01 16:00:46 andymaier set messages: +
2014-07-01 12:25:35 ezio.melotti set messages: +
2014-07-01 12:20:17 andymaier set nosy: + andymaiermessages: +
2013-05-10 17:33:48 ezio.melotti set files: + issue17904.difftype: behavior -> enhancementkeywords: + patchnosy: + chris.jerdonek, ezio.melottimessages: + stage: needs patch -> patch review
2013-05-04 15:31:02 pitrou set stage: needs patch
2013-05-04 10:34:39 flox create