diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-07-28 07:53:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-28 07:53:21 (GMT) |
commit | aa449cf063581ea515e2a6194d175f5e1db3d62e (patch) | |
tree | 96bf13bb48133b128a0e6f0104de6c4447acfe8a /Doc | |
parent | 3ff5ce4706630207bb2c2e2589a4501bf0d1bd78 (diff) | |
download | cpython-aa449cf063581ea515e2a6194d175f5e1db3d62e.zip cpython-aa449cf063581ea515e2a6194d175f5e1db3d62e.tar.gz cpython-aa449cf063581ea515e2a6194d175f5e1db3d62e.tar.bz2 |
gh-122085: Create dedicated page for deprecations (#122352)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/contents.rst | 1 | ||||
-rw-r--r-- | Doc/deprecations/index.rst | 10 | ||||
-rw-r--r-- | Doc/tools/templates/indexcontent.html | 2 |
3 files changed, 13 insertions, 0 deletions
diff --git a/Doc/contents.rst b/Doc/contents.rst index 24ceacb..b57f4b0 100644 --- a/Doc/contents.rst +++ b/Doc/contents.rst @@ -14,6 +14,7 @@ installing/index.rst howto/index.rst faq/index.rst + deprecations/index.rst glossary.rst about.rst diff --git a/Doc/deprecations/index.rst b/Doc/deprecations/index.rst new file mode 100644 index 0000000..cfb30dd --- /dev/null +++ b/Doc/deprecations/index.rst @@ -0,0 +1,10 @@ +Deprecations +============ + +.. include:: pending-removal-in-3.14.rst + +.. include:: pending-removal-in-3.15.rst + +.. include:: pending-removal-in-3.16.rst + +.. include:: pending-removal-in-future.rst diff --git a/Doc/tools/templates/indexcontent.html b/Doc/tools/templates/indexcontent.html index 6f854e8..f2e9fbb 100644 --- a/Doc/tools/templates/indexcontent.html +++ b/Doc/tools/templates/indexcontent.html @@ -33,6 +33,8 @@ <span class="linkdescr">{% trans %}C API reference{% endtrans %}</span></p> <p class="biglink"><a class="biglink" href="{{ pathto("faq/index") }}">{% trans %}FAQs{% endtrans %}</a><br/> <span class="linkdescr">{% trans %}Frequently asked questions (with answers!){% endtrans %}</span></p> + <p class="biglink"><a class="biglink" href="{{ pathto("deprecations/index") }}">{% trans %}Deprecations{% endtrans %}</a><br/> + <span class="linkdescr">{% trans %}Deprecated functionality{% endtrans %}</span></p> </td></tr> </table> |