summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-02-26 23:59:55 (GMT)
committerGitHub <noreply@github.com>2018-02-26 23:59:55 (GMT)
commitec5569b08efd28fdc032fb8b474f588633ddf6af (patch)
treee390999ae7108bfe2154beb6f85e10888cb8e331 /Misc
parente650fd362ee7753ca906e1d92121a165ce45ecb6 (diff)
downloadcpython-ec5569b08efd28fdc032fb8b474f588633ddf6af.zip
cpython-ec5569b08efd28fdc032fb8b474f588633ddf6af.tar.gz
cpython-ec5569b08efd28fdc032fb8b474f588633ddf6af.tar.bz2
bpo-32222: Fix pygettext skipping docstrings for funcs with arg typehints (GH-4745)
(cherry picked from commit eee72d4778a5513038edd5236cdd87ccce2bc60a) Co-authored-by: Tobotimus <Tobotimus@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tools-Demos/2017-12-07-20-51-20.bpo-32222.hPBcGT.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tools-Demos/2017-12-07-20-51-20.bpo-32222.hPBcGT.rst b/Misc/NEWS.d/next/Tools-Demos/2017-12-07-20-51-20.bpo-32222.hPBcGT.rst
new file mode 100644
index 0000000..b0b4c5e
--- /dev/null
+++ b/Misc/NEWS.d/next/Tools-Demos/2017-12-07-20-51-20.bpo-32222.hPBcGT.rst
@@ -0,0 +1,3 @@
+Fix pygettext not extracting docstrings for functions with type annotated
+arguments.
+Patch by Toby Harradine.