summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* version 2.7.52.7.5andy2013-05-142-2/+3
|
* Merge pull request #345 from awestendorf/uri-without-portAndy McCurdy2013-05-101-1/+1
|\ | | | | from_url supports URI without a port number, defaults to 6379
| * from_url supports URI without a port number, defaults to 6379Aaron Westendorf2013-05-101-1/+1
|/
* can reuse the already existing parse_error routine to deal with LOADING errors.andy2013-05-061-6/+3
|
* make tox run newest pep8andy2013-05-061-1/+1
|
* maybe quotes are necessary?andy2013-05-011-3/+3
|
* apparently hiredis doesn't work with python2.5, so turning off for nowandy2013-05-011-0/+3
|
* separate travis builds for hiredisandy2013-05-011-0/+4
|
* DEL, HDEL, ZREM commands now return number of keys deleted. fixed #243andy2013-05-013-11/+34
|
* more RST formattingandy2013-04-281-9/+9
|
* 2.7.42.7.4andy2013-04-283-3/+4
|
* use README.rst for long descriptionandy2013-04-281-1/+1
|
* moving to RSTandy2013-04-281-39/+95
|
* keep historyandy2013-04-282-440/+31
|
* more rstandy2013-04-281-11/+11
|
* better linksandy2013-04-281-7/+7
|
* rst format readmeandy2013-04-281-0/+409
|
* Merge pull request #343 from cypreess/masterAndy McCurdy2013-04-281-0/+10
|\ | | | | Fixing INCRBY inconsistent naming
| * Adding incrby aliasKrzysztof Dorosz2013-04-281-0/+10
|/
* remove offending pep8 line, travis ci should pass nowandy2013-04-271-2/+0
|
* run fewer pep8 buildsandy2013-04-271-3/+6
|
* install pep8 in install: sectionandy2013-04-271-3/+4
|
* bash fooandy2013-04-271-2/+1
|
* more weird pep8 travis hackingandy2013-04-271-3/+4
|
* remove matrix, doesn't seem to workandy2013-04-271-7/+3
|
* attempting to add a separate build for pep8andy2013-04-271-3/+7
|
* testing travis-ci pep8 integrationandy2013-04-271-0/+2
|
* pep8 testing on travisandy2013-04-271-1/+5
|
* tests should pass on older redis versionsandy2013-04-271-0/+35
|
* travis runs 2.6.12, great.andy2013-04-271-10/+0
|
* testing redis version on travisandy2013-04-271-0/+10
|
* pep8andy2013-04-273-56/+53
|
* finer grain testsandy2013-04-272-5/+11
|
* Implement extended set options added in Redis 2.6.12.george yoshida2013-04-272-3/+2
| | | | - fix wording/formatting
* Implement extended set options added in Redis 2.6.12.george yoshida2013-04-271-1/+1
| | | | - support Python 3.x
* Implement extended set options added in Redis 2.6.12.george yoshida2013-04-272-4/+71
| | | | | | SPECS : - http://redis.io/commands/set - https://github.com/antirez/redis/issues/931
* 2.7.32.7.3andy2013-04-222-2/+2
|
* pep8andy2013-04-225-20/+18
|
* Merge branch 'mapleoin-master'andy2013-04-223-2/+79
|\
| * Merge branch 'master' of git://github.com/mapleoin/redis-py into mapleoin-masterandy2013-04-223-2/+79
| |\ | | | | | | | | | | | | Conflicts: redis/client.py
| | * use response callbacks for sort() with tuples to work with pipelinesIonuț Arțăriși2011-10-111-9/+18
| | |
| | * add an optional argument to sort to make it return tuplesIonuț Arțăriși2011-10-102-2/+61
| | |
* | | Merge pull request #338 from stephan-hof/corrupted_pipeline_socketAndy McCurdy2013-04-222-2/+24
|\ \ \ | | | | | | | | socket gets corrupted if errors in pipeline happen
| * | | Add python3 and python2.5 compatibilityhofmockel2013-04-192-3/+3
| | | |
| * | | Read all command responses of a pipelinehofmockel2013-04-172-2/+24
| | | | | | | | | | | | | | | | | | | | Otherwise a error makes the responses stuck in the socket. Which leads to wrong responses for the following commands
* | | | Merge pull request #327 from pabelanger/pep8Andy McCurdy2013-04-229-27/+50
|\ \ \ \ | |_|/ / |/| | | Format code per pep8 guidelines
| * | | Format code per pep8 guidelinesPaul Belanger2013-03-309-27/+50
| | | | | | | | | | | | | | | | | | | | | | | | A simple patch to enable pep8 in tox and format our code properly. Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
* | | | changelogandy2013-04-221-0/+2
| | | |
* | | | Merge pull request #340 from thruflo/masterAndy McCurdy2013-04-225-1/+269
|\ \ \ \ | | | | | | | | | | Add optional `redis.connection.BlockingConnectionPool` class.
| * | | | tests: tweak blocking connection pool test.James Arthur2013-04-191-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | Previously the `test_max_connections_blocks` test wasn't actually testing that the connection was blocking.