summaryrefslogtreecommitdiff
path: root/redis/_compat.py
Commit message (Collapse)AuthorAgeFilesLines
* Use unicode literals throughout projectJon Dufresne2018-11-031-12/+0
| | | | Remove workaround for handling unicode with older Pythons.
* Use io package for BytesIOJon Dufresne2018-11-031-5/+0
| | | | Available on all supported Python versions.
* Remove Queue package workarounds for older unsupported PythonsJon Dufresne2018-11-031-24/+2
|
* Remove duplicate import of errnoJon Dufresne2018-11-011-1/+0
|
* pycodestyle fixes in clientRoey Prat2018-10-281-1/+1
|
* Fix PEP8 issues.Seth M. Larson2017-03-231-1/+1
|
* Implement review commentsSeth M. Larson2017-03-231-2/+3
|
* InterruptedError is not defined in Python 2Seth M. Larson2017-03-231-2/+11
| | | Fixes #845
* Retry `select` calls on `InterruptedError`Carlton Gibson2016-06-101-0/+11
| | | | Ref #738
* Style fixes (2)Thomas Steinacher2016-05-241-2/+2
|
* Style fixesThomas Steinacher2016-05-241-2/+3
|
* For Python < 3.5, automatically retry EINTRThomas Steinacher2016-05-241-0/+57
|
* satisfy pep8 updatesAndy McCurdy2015-09-281-13/+26
|
* Fix pep8 errorsPaul Keene2015-02-101-17/+32
|
* Handle percent-encoded URLs in parsing codePaul Keene2015-02-091-1/+2
|
* UnicodeDecodeErrorfix unicode encode error when using pipeline in ↵Hendrik Muhs2014-12-041-0/+11
| | | | combination with msgpack and lua
* Cleaned up URL parsing code, now returns ConnectionPool instances.Andy McCurdy2014-05-111-2/+2
| | | | | | | StrictRedis.from_url() now creations a connection pool instance and passes that as the connection_pool argument to the client class. Cleaned up the test suite for URL parsing and BlockingConnectionPool tests
* added SLOWLOG support. finally can partially close #170 :)Andy McCurdy2014-04-081-1/+1
|
* connection pool testsandy2013-06-041-0/+2
|
* use iterators for dict traversal in both python 2 and 3andy2013-05-231-5/+5
|
* pep8andy2013-04-271-1/+1
|
* pep8andy2013-04-221-4/+4
|
* compat: extract queue imports to _compat module.James Arthur2013-04-191-0/+27
| | | | Adds python 2.5 support for the LifoQueue structure.
* in _compat for py3k only encode if param is not bytes type in b()Salimane Adjao Moustapha2012-09-141-1/+1
|
* Fixed PEP 8 violations introduced in previous commitsAlex Grönholm2012-08-071-2/+4
|
* Fixed compatibility issue with Python 2.5 and 2.6 introduced in theAlex Grönholm2012-08-071-2/+2
| | | previous commit
* Fixed Python 3.2+ compatibilityAlex Grönholm2012-08-071-0/+48