call site 1 for execnet.RSync.__init__
test/rsession/testing/test_hostmanage.py - line 131
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
   def test_hrsync_localhost_inplace(self):
       h1 = HostInfo("localhost")
       events = []
->     rsync = HostRSync(self.source)
       h1.initgateway()
       rsync.add_target_host(h1, reporter=events.append)
       assert events
       l = [x for x in events 
               if isinstance(x, repevent.HostRSyncing)]
       assert len(l) == 1
       ev = l[0]
       assert ev.host == h1
       assert ev.root == ev.remotepath 
       l = [x for x in events 
               if isinstance(x, repevent.HostRSyncRootReady)]
       assert len(l) == 1
       ev = l[0]
       assert ev.root == self.source
       assert ev.host == h1
test/rsession/hostmanage.py - line 83
77
78
79
80
81
82
83
   def __init__(self, sourcedir, *args, **kwargs):
       self._synced = {}
       ignores= None
       if 'ignores' in kwargs:
           ignores = kwargs.pop('ignores')
       self._ignores = ignores or []
->     super(HostRSync, self).__init__(sourcedir=sourcedir, **kwargs)