~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/gio_transport.py

  • Committer: Vincent Ladeuil
  • Date: 2010-08-30 07:42:12 UTC
  • mfrom: (5247.2.39 catch-them-all)
  • mto: This revision was merged to the branch mainline in revision 5396.
  • Revision ID: v.ladeuil+lp@free.fr-20100830074212-y0vj6t3sm1zr706y
Fix most of the leaking tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
241
241
                                        " %s" % str(e), orig_error=e)
242
242
        return connection, (user, password)
243
243
 
 
244
    def disconnect(self):
 
245
        # FIXME: Nothing seems to be necessary here, which sounds a bit strange
 
246
        # -- vila 20100601
 
247
        pass
 
248
 
244
249
    def _reconnect(self):
 
250
        # FIXME: This doesn't seem to be used -- vila 20100601
245
251
        """Create a new connection with the previously used credentials"""
246
252
        credentials = self._get_credentials()
247
253
        connection, credentials = self._create_connection(credentials)