bpo-32222: Fix pygettext skipping docstrings for funcs with arg typehints (GH-4745)

This commit is contained in:
Tobotimus 2018-02-27 09:48:14 +11:00 committed by Serhiy Storchaka
parent 3a087beddd
commit eee72d4778
3 changed files with 102 additions and 4 deletions

View file

@ -0,0 +1,3 @@
Fix pygettext not extracting docstrings for functions with type annotated
arguments.
Patch by Toby Harradine.