[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-12-10 Thread miss-islington
miss-islington added the comment: New changeset 40d765260ae08d152ee89ed9c1c621f4a0024fa6 by Miss Islington (bot) in branch '3.9': bpo-42182: stdtypes doc - update and fix links to several dunder methods (GH-27384)

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-12-10 Thread miss-islington
miss-islington added the comment: New changeset 64c2788f42c49c7094d3b6e5404fe8386a2b4779 by Miss Islington (bot) in branch '3.10': bpo-42182: stdtypes doc - update and fix links to several dunder methods (GH-27384)

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-12-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +28245 pull_request: https://github.com/python/cpython/pull/30021 ___ Python tracker ___

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-12-10 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +28244 pull_request: https://github.com/python/cpython/pull/30020 ___ Python tracker

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-12-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 8c74713d0e349c27518080945d5f040dfd52a56e by andrei kulakov in branch 'main': bpo-42182: stdtypes doc - update and fix links to several dunder methods (GH-27384)

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-07-26 Thread Andrei Kulakov
Change by Andrei Kulakov : -- keywords: +patch pull_requests: +25917 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27384 ___ Python tracker ___

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-07-26 Thread Andrei Kulakov
Andrei Kulakov added the comment: I put the PR up here: https://github.com/python/cpython/pull/27384/files -- ___ Python tracker ___

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-07-26 Thread Andrei Kulakov
Change by Andrei Kulakov : -- type: -> behavior versions: +Python 3.11, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-07-26 Thread Andrei Kulakov
Andrei Kulakov added the comment: Something changed between 3.8 and 3.9 so that "bare" references to methods on `object` no longer get linked. So for example, :meth:`__bool__` would get link to object.__bool__ anchor, but in 3.9+, it should be :meth:`~object.__bool__` for the link to be

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-07-26 Thread Andrei Kulakov
Andrei Kulakov added the comment: In this case, it appears that ref with tilde and object makes it work in both 3.10 and 3.11, but with just bare method specified, it doesn't create link in both -- so it may be good to try updating it to have tilde and a ref to obj: Once an iterator's

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2021-07-26 Thread Andrei Kulakov
Andrei Kulakov added the comment: The same thing happens in 3.11. I've also confirmed the markup is exactly the same. -- nosy: +andrei.avk ___ Python tracker ___

[issue42182] 3.10 Documentation Not Hyperlinking Some Methods

2020-10-28 Thread Ken Jin
New submission from Ken Jin : Some ``:meth:`` markups are not being hyperlinked at all, while some are. This only occurs for Python 3.10. This also seems related to https://bugs.python.org/issue42042. Eg. For 3.9, https://docs.python.org/3.9/library/stdtypes.html#truth-value-testing: