Mercurial > hg
changeset 33819:d5ef17608159
i18n: ignore docstring for modules under mercurial
Docstring of modules is needed only for "hg help -e EXTNAME".
This is a preparation for applying hggettext on util.py, which has
module docstring, but it isn't needed for translation.
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Tue, 15 Aug 2017 21:06:26 +0900 |
parents | ed04d7254a91 |
children | fa7e30efe05a |
files | i18n/hggettext |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/i18n/hggettext Tue Aug 15 19:27:24 2017 +0900 +++ b/i18n/hggettext Tue Aug 15 21:06:26 2017 +0900 @@ -103,7 +103,7 @@ only extract docstrings from functions mentioned in these tables. """ mod = importpath(path) - if mod.__doc__: + if not path.startswith('mercurial/') and mod.__doc__: src = open(path).read() lineno = 1 + offset(src, mod.__doc__, path, 7) print(poentry(path, lineno, mod.__doc__))