diff --git a/client/ledis-py/ledis/client.py b/client/ledis-py/ledis/client.py index 2e8a3f7..de3dd2d 100644 --- a/client/ledis-py/ledis/client.py +++ b/client/ledis-py/ledis/client.py @@ -173,21 +173,6 @@ class Ledis(object): "Set a custom Response Callback" self.response_callbacks[command] = callback - - # def pipeline(self, transaction=True, shard_hint=None): - # """ - # Return a new pipeline object that can queue multiple commands for - # later execution. ``transaction`` indicates whether all commands - # should be executed atomically. Apart from making a group of operations - # atomic, pipelines are useful for reducing the back-and-forth overhead - # between the client and server. - # """ - # return StrictPipeline( - # self.connection_pool, - # self.response_callbacks, - # transaction, - # shard_hint) - def tx(self): return Transaction( self.connection_pool,