/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_smart_transport.py

  • Committer: v.ladeuil+lp at free
  • Date: 2006-10-24 09:00:14 UTC
  • mfrom: (2094 +trunk)
  • mto: (2145.1.1 keepalive)
  • mto: This revision was merged to the branch mainline in revision 2146.
  • Revision ID: v.ladeuil+lp@free.fr-20061024090014-55377d873850e11b
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
        """
98
98
        def _receive_bytes_on_server():
99
99
            connection, address = sock.accept()
100
 
            bytes.append(connection.recv(3, socket.MSG_WAITALL))
 
100
            bytes.append(osutils.recv_all(connection, 3))
101
101
            connection.close()
102
102
        t = threading.Thread(target=_receive_bytes_on_server)
103
103
        t.start()