Mercurial > hg
changeset 5831:4a40b7066525
keyword: fix some doc strings; update copyright
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Fri, 11 Jan 2008 15:01:29 +0100 |
parents | c32d41affb68 |
children | 2192ed187319 |
files | hgext/keyword.py |
diffstat | 1 files changed, 4 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/keyword.py Thu Jan 10 12:07:18 2008 +0300 +++ b/hgext/keyword.py Fri Jan 11 15:01:29 2008 +0100 @@ -1,6 +1,6 @@ # keyword.py - $Keyword$ expansion for Mercurial # -# Copyright 2007 Christian Ebert <blacktrash@gmx.net> +# Copyright 2007, 2008 Christian Ebert <blacktrash@gmx.net> # # This software may be used and distributed according to the terms # of the GNU General Public License, incorporated herein by reference. @@ -150,9 +150,8 @@ def process(self, node, data, expand): '''Returns a tuple: data, count. - Count is number of keywords/keyword substitutions, indicates - to caller whether to act on file containing data. - Keywords in data are expanded, if templater was initialized.''' + Count is number of keywords/keyword substitutions, + telling caller whether to act on file containing data.''' if util.binary(data): return data, None if expand: @@ -175,8 +174,7 @@ _kwtemplater.path = path def kwctread(self, node, expand): - '''Reads expanding and counting keywords - (only called from kwtemplater.overwrite).''' + '''Reads expanding and counting keywords, called from _overwrite.''' data = super(kwfilelog, self).read(node) return _kwtemplater.process(node, data, expand)