summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSrinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>2025-01-08 10:32:07 (GMT)
committerGitHub <noreply@github.com>2025-01-08 10:32:07 (GMT)
commit474e419792484d1c16e7d9c99b7bf144136b9307 (patch)
tree3ec41062488693a5296ccc867ce786a04152d802 /Misc
parentcdfb8bc93a4d8c06d2404ba2d243937ba209438c (diff)
downloadcpython-474e419792484d1c16e7d9c99b7bf144136b9307.zip
cpython-474e419792484d1c16e7d9c99b7bf144136b9307.tar.gz
cpython-474e419792484d1c16e7d9c99b7bf144136b9307.tar.bz2
gh-41872: Fix quick extraction of module docstrings from a file in pydoc (GH-127520)
It now supports docstrings with single quotes, escape sequences, raw string literals, and other Python syntax. Co-authored-by: Éric <merwok@netwok.org> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2024-12-17-15-23-40.gh-issue-41872.31LjKY.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-12-17-15-23-40.gh-issue-41872.31LjKY.rst b/Misc/NEWS.d/next/Library/2024-12-17-15-23-40.gh-issue-41872.31LjKY.rst
new file mode 100644
index 0000000..b807dcb
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-12-17-15-23-40.gh-issue-41872.31LjKY.rst
@@ -0,0 +1,3 @@
+Fix quick extraction of module docstrings from a file in :mod:`pydoc`.
+It now supports docstrings with single quotes, escape sequences,
+raw string literals, and other Python syntax.