File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 83
83
# This config is a dictionary of external sites,
84
84
# mapping unique short aliases to a base URL and a prefix.
85
85
# https://www.sphinx-doc.org/en/master/usage/extensions/extlinks.html
86
+ _repo = "python/cpython"
86
87
extlinks = {
88
+ "cpython-issue" : (f"https://github.com/{ _repo } /issues/%s" , f"{ _repo } #%s" ),
89
+ "cpython-pr" : (f"https://github.com/{ _repo } /pull/%s" , f"{ _repo } #%s" ),
87
90
"pypi" : ("https://pypi.org/project/%s/" , "%s" ),
88
91
}
89
92
Original file line number Diff line number Diff line change @@ -825,8 +825,7 @@ This allows the following implementation strategy:
825
825
* The generated ``__annotate__ `` function uses the set to determine
826
826
which annotations were defined in the class or module body, and return only those.
827
827
828
- This was implemented in `python/cpython#130935
829
- <https://github.com/python/cpython/pull/130935> `__.
828
+ This was implemented in :cpython-pr: `130935 `.
830
829
831
830
Specification
832
831
-------------
You can’t perform that action at this time.
0 commit comments