diff --git a/thrift/transport/TTransport.py b/thrift/transport/TTransport.py index c72ad06..dcedd3d 100644 --- a/thrift/transport/TTransport.py +++ b/thrift/transport/TTransport.py @@ -55,7 +55,6 @@ class TTransportBase: buff = b'' have = 0 while (have < sz): - #print(self) chunk = self.read(sz - have) have += len(chunk) buff += chunk