delete deprecated code

This commit is contained in:
holys 2014-08-26 11:04:47 +08:00
parent c00047cc6b
commit 059024c6ac
1 changed files with 0 additions and 15 deletions

View File

@ -173,21 +173,6 @@ class Ledis(object):
"Set a custom Response Callback" "Set a custom Response Callback"
self.response_callbacks[command] = 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): def tx(self):
return Transaction( return Transaction(
self.connection_pool, self.connection_pool,