diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2011-10-01 20:49:36 +0000 |
---|---|---|
committer | Lorry <lorry@roadtrain.codethink.co.uk> | 2012-09-27 13:27:51 +0000 |
commit | 921ced43c48c1d170452a7b251b94cc96ec8dd44 (patch) | |
tree | 3c4a89176ea67fe4c7bf7b375488361a823c95fa /mercurial/dagutil.py | |
parent | 9039c805b0a7e36220101323f82735f08a104b37 (diff) | |
download | mercurial-tarball-master.tar.gz |
Imported from /srv/lorry/lorry-area/mercurial-tarball/mercurial-1.9.3.tar.gz.HEADmercurial-1.9.3master
Diffstat (limited to 'mercurial/dagutil.py')
-rw-r--r-- | mercurial/dagutil.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mercurial/dagutil.py b/mercurial/dagutil.py index a9d8fb8..7908e63 100644 --- a/mercurial/dagutil.py +++ b/mercurial/dagutil.py @@ -26,25 +26,25 @@ class basedag(object): def nodeset(self): '''set of all node idxs''' - raise NotImplementedError + raise NotImplementedError() def heads(self): '''list of head ixs''' - raise NotImplementedError + raise NotImplementedError() def parents(self, ix): '''list of parents ixs of ix''' - raise NotImplementedError + raise NotImplementedError() def inverse(self): '''inverse DAG, where parents becomes children, etc.''' - raise NotImplementedError + raise NotImplementedError() def ancestorset(self, starts, stops=None): ''' set of all ancestors of starts (incl), but stop walk at stops (excl) ''' - raise NotImplementedError + raise NotImplementedError() def descendantset(self, starts, stops=None): ''' @@ -59,7 +59,7 @@ class basedag(object): By "connected list" we mean that if an ancestor and a descendant are in the list, then so is at least one path connecting them. ''' - raise NotImplementedError + raise NotImplementedError() def externalize(self, ix): '''return a list of (or set if given a set) of node ids''' |