diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-07-07 19:30:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-07 19:30:40 (GMT) |
commit | dc33d4ac6f48cb6c296943b6430ee415c1837e91 (patch) | |
tree | 920fa99505f0f7e37a3e64abe57d989c8e883ea3 | |
parent | c14e332f664bd4c848357cc509efd6f9d6cc9294 (diff) | |
download | cpython-dc33d4ac6f48cb6c296943b6430ee415c1837e91.zip cpython-dc33d4ac6f48cb6c296943b6430ee415c1837e91.tar.gz cpython-dc33d4ac6f48cb6c296943b6430ee415c1837e91.tar.bz2 |
Fix moduleauthor/sectionauthor directives in Enum (GH-8117)
(cherry picked from commit 2d748389dc9c8d083f51c7d28761e088a5468c86)
Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-rw-r--r-- | Doc/library/enum.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 5c1b226..2bf4885 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -4,10 +4,10 @@ .. module:: enum :synopsis: Implementation of an enumeration class. -.. :moduleauthor:: Ethan Furman <ethan@stoneleaf.us> -.. :sectionauthor:: Barry Warsaw <barry@python.org>, -.. :sectionauthor:: Eli Bendersky <eliben@gmail.com>, -.. :sectionauthor:: Ethan Furman <ethan@stoneleaf.us> +.. moduleauthor:: Ethan Furman <ethan@stoneleaf.us> +.. sectionauthor:: Barry Warsaw <barry@python.org> +.. sectionauthor:: Eli Bendersky <eliben@gmail.com> +.. sectionauthor:: Ethan Furman <ethan@stoneleaf.us> .. versionadded:: 3.4 |