summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/lazy.py
diff options
context:
space:
mode:
authorben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2002-11-22 08:07:01 +0000
committerben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2002-11-22 08:07:01 +0000
commit104bb0cd242be050b030b559d2f7498160e1a2f4 (patch)
tree711bbf3276928d62697ec6d51cde1c64c9c4d07b /rdiff-backup/rdiff_backup/lazy.py
parente4d46b43f475ddbc14f23933210a435e1255cf65 (diff)
downloadrdiff-backup-104bb0cd242be050b030b559d2f7498160e1a2f4.tar.gz
Changes, only one I remember is adding --list-changed-since
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@231 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff_backup/lazy.py')
-rw-r--r--rdiff-backup/rdiff_backup/lazy.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/rdiff-backup/rdiff_backup/lazy.py b/rdiff-backup/rdiff_backup/lazy.py
index f87a2b8..eddf63c 100644
--- a/rdiff-backup/rdiff_backup/lazy.py
+++ b/rdiff-backup/rdiff_backup/lazy.py
@@ -13,7 +13,7 @@
from __future__ import generators
import os, stat, types
from static import *
-
+import psyco
class Iter:
"""Hold static methods for the manipulation of lazy iterators"""
@@ -291,6 +291,8 @@ class IterTreeReducer:
self.index = index
return 1
+psyco.bind(IterTreeReducer)
+
class ITRBranch:
"""Helper class for IterTreeReducer below
@@ -355,4 +357,3 @@ class ITRBranch:
# Put at bottom to prevent (viciously) circular module dependencies
from robust import *
from log import *
-