File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 8
8
extensions = [
9
9
'custom_roles' ,
10
10
'notfound.extension' ,
11
+ 'sphinx.ext.extlinks' ,
11
12
'sphinx.ext.intersphinx' ,
12
13
'sphinx.ext.todo' ,
13
14
'sphinx_copybutton' ,
170
171
# sphinx-notfound-page
171
172
notfound_urls_prefix = "/"
172
173
174
+ # sphinx.ext.extlinks
175
+ # This config is a dictionary of external sites,
176
+ # mapping unique short aliases to a base URL and a prefix.
177
+ # https://www.sphinx-doc.org/en/master/usage/extensions/extlinks.html
178
+ extlinks = {
179
+ "github" : ("https://github.com/%s/" , "%s" ),
180
+ }
181
+
173
182
# sphinxext-opengraph config
174
183
ogp_site_url = "https://devguide.python.org/"
175
184
ogp_site_name = "Python Developer's Guide"
Original file line number Diff line number Diff line change @@ -371,3 +371,35 @@ administrators) to merge changes to that branch.
371
371
372
372
Multi-Factor Authentication must be enabled by the user in order to retain
373
373
access as a Release Manager of the branch.
374
+
375
+ Governance
376
+ ----------
377
+
378
+ The Python Steering Council has overall authority over Python and has delegated
379
+ some of its responsibilities to other groups.
380
+
381
+ This table lists the PEPs defining each group's responsibilities,
382
+ and the repository where you can open an issue to ask for a decision.
383
+
384
+ .. list-table ::
385
+ :header-rows: 1
386
+
387
+ * - Name
388
+ - PEP
389
+ - Contact repo
390
+ * - Steering Council
391
+ - :pep: `13 `
392
+ - :github: `python/steering-council `
393
+ * - C API Working Group
394
+ - :pep: `731 `
395
+ - :github: `capi-workgroup/decisions `
396
+ * - Documentation Editorial Board
397
+ - :pep: `732 `
398
+ - :github: `python/editorial-board `
399
+ * - Typing Council
400
+ - :pep: `729 `
401
+ - :github: `python/typing-council `
402
+
403
+ .. seealso ::
404
+
405
+ All governance PEPs: https://peps.python.org/topic/governance/
You can’t perform that action at this time.
0 commit comments