summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/lazy.py
diff options
context:
space:
mode:
authorben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2002-08-01 04:57:04 +0000
committerben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2002-08-01 04:57:04 +0000
commit2229f7c383e63da7688f8362e80a05079a30dff9 (patch)
tree3432da9789c84b6c8c9561f4bbc4124b1faef9f8 /rdiff-backup/rdiff_backup/lazy.py
parentf360dbbe2f6d15fdf775f8f4550405d4fcdb2a46 (diff)
downloadrdiff-backup-2229f7c383e63da7688f8362e80a05079a30dff9.tar.gz
Fixed --verbosity in Main, added something to lazy?, fixed exception
in rpath.py. git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@178 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff_backup/lazy.py')
-rw-r--r--rdiff-backup/rdiff_backup/lazy.py19
1 files changed, 11 insertions, 8 deletions
diff --git a/rdiff-backup/rdiff_backup/lazy.py b/rdiff-backup/rdiff_backup/lazy.py
index 5020ed2..4c32b5d 100644
--- a/rdiff-backup/rdiff_backup/lazy.py
+++ b/rdiff-backup/rdiff_backup/lazy.py
@@ -204,13 +204,6 @@ class IterTreeReducer:
iterator nature of the connection between hosts and the temporal
order in which the files are processed.
- There are three stub functions below: start_process, end_process,
- and branch_process. A class that subclasses this one will
- probably fill in these functions to do more.
-
- It is important that this class be pickable, so keep that in mind
- when subclassing (this is used to resume failed sessions).
-
"""
def __init__(self, branch_class, branch_args):
"""ITR initializer"""
@@ -299,7 +292,17 @@ class IterTreeReducer:
class ITRBranch:
- """Helper class for IterTreeReducer below"""
+ """Helper class for IterTreeReducer below
+
+ There are five stub functions below: start_process, end_process,
+ branch_process, can_fast_process, and fast_process. A class that
+ subclasses this one will probably fill in these functions to do
+ more.
+
+ It is important that this class be pickable, so keep that in mind
+ when subclassing (this is used to resume failed sessions).
+
+ """
base_index = index = None
finished = None
caught_exception = start_successful = None