# HG changeset patch # User Greg Ward # Date 1242497758 14400 # Node ID 057e96fe29558cc84f3a50d38015a7360cf3df70 # Parent 53ff4a5af284a235f2a430e1f8edfb25c82905aa convert: improve docstrings, comments. diff -r 53ff4a5af284 -r 057e96fe2955 hgext/convert/common.py --- a/hgext/convert/common.py Fri May 15 01:21:24 2009 +0200 +++ b/hgext/convert/common.py Sat May 16 14:15:58 2009 -0400 @@ -75,7 +75,8 @@ def getfile(self, name, rev): """Return file contents as a string. rev is the identifier returned - by a previous call to getchanges(). + by a previous call to getchanges(). Raise IOError to indicate that + name was deleted in rev. """ raise NotImplementedError() @@ -89,7 +90,7 @@ """Returns a tuple of (files, copies). files is a sorted list of (filename, id) tuples for all files - changed between version and it's first parent returned by + changed between version and its first parent returned by getcommit(). id is the source revision id of the file. copies is a dictionary of dest: source diff -r 53ff4a5af284 -r 057e96fe2955 hgext/convert/convcmd.py --- a/hgext/convert/convcmd.py Fri May 15 01:21:24 2009 +0200 +++ b/hgext/convert/convcmd.py Sat May 16 14:15:58 2009 -0400 @@ -79,6 +79,9 @@ self.authors = {} self.authorfile = None + # Record converted revisions persistently: maps source revision + # ID to target revision ID (both strings). (This is how + # incremental conversions work.) self.map = mapfile(ui, revmapfile) # Read first the dst author map if any