~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/smart/protocol.py

Add docstrings to all the new modules, and a few other places.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
 
17
"""Wire-level encoding and decoding of requests and responses for the smart
 
18
client and server.
 
19
"""
 
20
 
 
21
 
17
22
from cStringIO import StringIO
18
23
 
19
24
from bzrlib import errors
20
25
from bzrlib.transport.smart import (
21
26
    request,
22
27
    vfs,
23
 
)
 
28
    )
24
29
 
25
30
 
26
31
def _recv_tuple(from_file):