[issue30052] URL Quoting page links to function Bytes instead of defintion

2019-06-21 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi @wim.glenn, Thanks for the report. It looks like the same issue applies to all the built-in functions that are handled this way, not just bytearray and bytes. So, dict, frozenset, list, memoryview, range, set, str, and tuple too. I'm not sure what th

[issue30052] URL Quoting page links to function Bytes instead of defintion

2019-06-17 Thread wim glenn
wim glenn added the comment: This anchor works, by the way: https://docs.python.org/3/library/functions.html#func-bytes Hopefully someone more fluent in the docs syntax can figure out a way to fix the anchor-link hovers -- ___ Python tracker

[issue30052] URL Quoting page links to function Bytes instead of defintion

2019-06-17 Thread wim glenn
wim glenn added the comment: https://docs.python.org/3/library/functions.html Usually the little paragraph icon appears when you hover over a function name, giving an anchor link. It's not doing it for bytes or bytearray. Was that an unintended consequence of disambiguation from the stdtype

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-06-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Backport PR looks good so I went ahead and merged it :) Thanks. -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker _

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-06-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 798cfb212383a6f5a31b610825d1af1d376804b2 by Mariatta (Nick Coghlan) in branch '3.6': bpo-30052: Always regenerate cross-references (GH-1339) (GH-1921) https://github.com/python/cpython/commit/798cfb212383a6f5a31b610825d1af1d376804b2 --

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-06-02 Thread Nick Coghlan
Nick Coghlan added the comment: Not your fault, Cheryl! I unfortunately got distracted and didn't follow up on the backports for several PRs I merged a while back. Mariatta has been graciously cleaning some of those up rather than leaving them lingering the way I had been :) I also just notic

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-06-02 Thread Nick Coghlan
Changes by Nick Coghlan : -- pull_requests: +1999 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-06-02 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 7a82f9c2b94d31c8f4cc8bb8e3151765d8b148d7 by Nick Coghlan in branch 'master': bpo-30052: Always regenerate cross-references (#1339) https://github.com/python/cpython/commit/7a82f9c2b94d31c8f4cc8bb8e3151765d8b148d7 -- __

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-06-02 Thread Cheryl Sabella
Cheryl Sabella added the comment: Sorry, Mariatta. I didn't realize this was waiting for a backport. -- ___ Python tracker ___ ___ Py

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-06-01 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 1c92c0edca413c6f8ce8ec326a67451ae751ead9 by Mariatta in branch '3.6': bpo-30052: Link `bytes` & `bytearray` to stdtypes not functions (GH-1271) (GH-1915) https://github.com/python/cpython/commit/1c92c0edca413c6f8ce8ec326a67451ae751ead9 --

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-06-01 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +1995 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-28 Thread Nick Coghlan
Nick Coghlan added the comment: New PR disabling the output caching and adding a corresponding NEWS entry: https://github.com/python/cpython/pull/1339 On my local machine, it takes a "nothing changed" build from less than 2 seconds to just under 2 minutes, but I think that's fine for a daily b

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-28 Thread Nick Coghlan
Changes by Nick Coghlan : -- pull_requests: +1450 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: I don't think it would add a lot of time or processing to rebuild it daily, would it? Seems safer than not doing it. -- ___ Python tracker ___

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-27 Thread Nick Coghlan
Nick Coghlan added the comment: Indeed, checking the dev build at https://docs.python.org/dev/library/urllib.parse.html#url-quoting shows it still linking to the old location. Perhaps the `autobuild-dev-html` target in the Makefile should be adding `-E` and `-a` so it always regenerates every

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: FYI. When I tested this change locally, I needed to do a 'make clean' then a 'make html' for all the pages to relink to the stdtypes page for :class:`bytes`. I had asked on the IRC channel about that and thought maybe the merge into the master would do that

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-27 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> backport needed type: -> behavior ___ Python tracker ___ ___ Python-bugs-list ma

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-25 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset c6db4811f9ea3aeff0e1fafe1c60a22835ef359e by Nick Coghlan (csabella) in branch 'master': bpo-30052: Link `bytes` & `bytearray` to stdtypes not functions (GH-1271) https://github.com/python/cpython/commit/c6db4811f9ea3aeff0e1fafe1c60a22835ef359e --

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- stage: -> patch review versions: +Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-24 Thread Cheryl Sabella
Changes by Cheryl Sabella : -- pull_requests: +1382 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since no one has said that this change shouldn't be made, I'll start working on this. -- ___ Python tracker ___ ___

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: I've looked into this a little more and it seems that, in all instances, the :class:`bytes` and :class:`bytearray` mark-up link to the Built-In Functions page instead of the Built-In Types page. It also looks like the Built-In Functions page has specific code

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-12 Thread Cheryl Sabella
New submission from Cheryl Sabella: On the URL Quoting page, the following line: `string may be either a str or a bytes.` Has the `str` link to: https://docs.python.org/3/library/stdtypes.html#str But the `bytes` link to: https://docs.python.org/3/library/functions.html#bytes Should the `byte