From 42a158b627732a897437fd5153cf23f7da18a10b Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Fri, 22 Apr 2022 16:33:38 -0700 Subject: [PATCH] gh-91547: Remove "Undocumented modules" page (GH-91682) (cherry picked from commit 254aaa7981d8773658fb14795da5dec888c95f93) Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> --- Doc/library/index.rst | 1 - Doc/library/undoc.rst | 26 ------------------- ...2-04-19-20-16-00.gh-issue-91547.LsNWER.rst | 1 + 3 files changed, 1 insertion(+), 27 deletions(-) delete mode 100644 Doc/library/undoc.rst create mode 100644 Misc/NEWS.d/next/Documentation/2022-04-19-20-16-00.gh-issue-91547.LsNWER.rst diff --git a/Doc/library/index.rst b/Doc/library/index.rst index 0fd6e4c0d0b0..5007bacbab1e 100644 --- a/Doc/library/index.rst +++ b/Doc/library/index.rst @@ -75,5 +75,4 @@ the `Python Package Index `_. windows.rst unix.rst superseded.rst - undoc.rst security_warnings.rst diff --git a/Doc/library/undoc.rst b/Doc/library/undoc.rst deleted file mode 100644 index 2444080d6b9d..000000000000 --- a/Doc/library/undoc.rst +++ /dev/null @@ -1,26 +0,0 @@ -.. _undoc: - -******************** -Undocumented Modules -******************** - -Here's a quick listing of modules that are currently undocumented, but that -should be documented. Feel free to contribute documentation for them! (Send -via email to docs@python.org.) - -The idea and original contents for this chapter were taken from a posting by -Fredrik Lundh; the specific contents of this chapter have been substantially -revised. - - -Platform specific modules -========================= - -These modules are used to implement the :mod:`os.path` module, and are not -documented beyond this mention. There's little need to document these. - -:mod:`ntpath` - --- Implementation of :mod:`os.path` on Win32 and Win64 platforms. - -:mod:`posixpath` - --- Implementation of :mod:`os.path` on POSIX. diff --git a/Misc/NEWS.d/next/Documentation/2022-04-19-20-16-00.gh-issue-91547.LsNWER.rst b/Misc/NEWS.d/next/Documentation/2022-04-19-20-16-00.gh-issue-91547.LsNWER.rst new file mode 100644 index 000000000000..95b34cb2fac1 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2022-04-19-20-16-00.gh-issue-91547.LsNWER.rst @@ -0,0 +1 @@ +Remove "Undocumented modules" page.