# HG changeset patch # User Christian Ebert # Date 1200058882 -3600 # Node ID 9f78d508764b0c72b2320323ab679338c95797c1 # Parent c1521ff40eda106528907e5d494ff8c40ab5beea Fix some doc strings; update copyright diff -r c1521ff40eda -r 9f78d508764b hgkw/keyword.py --- a/hgkw/keyword.py Wed Jan 09 10:00:18 2008 -0600 +++ b/hgkw/keyword.py Fri Jan 11 14:41:22 2008 +0100 @@ -1,6 +1,6 @@ # keyword.py - $Keyword$ expansion for Mercurial # -# Copyright 2007 Christian Ebert +# Copyright 2007, 2008 Christian Ebert # # This software may be used and distributed according to the terms # of the GNU General Public License, incorporated herein by reference. @@ -152,9 +152,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: @@ -177,8 +176,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)