Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Pre 6.2 redis should default to None for script flush (#1641) | Chayim | 2021-10-25 | 1 | -0/+4 |
| | |||||
* | Support for SCRIPT FLUSH with SYNC/ASYNC (#1567) | Chayim | 2021-09-01 | 1 | -0/+18 |
| | | | Part of #1546 | ||||
* | Remove support for end-of-life Python 2.7 (#1318) | Jon Dufresne | 2020-08-06 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove support for end-of-life Python 2.7 Python 2.7 is end of life. It is no longer receiving bug fixes, including for security issues. Python 2.7 went EOL on 2020-01-01. For additional details on support Python versions, see: Supported: https://devguide.python.org/#status-of-python-branches EOL: https://devguide.python.org/devcycle/#end-of-life-branches Removing support for EOL Pythons will reduce testing and maintenance resources while allowing the library to move towards a modern Python 3 style. Python 2.7 users can continue to use the previous version of redis-py. Was able to simplify the code: - Removed redis._compat module - Removed __future__ imports - Removed object from class definition (all classes are new style) - Removed long (Python 3 unified numeric types) - Removed deprecated __nonzero__ method - Use simpler Python 3 super() syntax - Use unified OSError exception - Use yield from syntax Co-authored-by: Andy McCurdy <andy@andymccurdy.com> | ||||
* | Use unicode literals throughout project | Jon Dufresne | 2018-11-03 | 1 | -3/+3 |
| | | | | Remove workaround for handling unicode with older Pythons. | ||||
* | Remove from __future__ import with_statement | Jon Dufresne | 2018-11-03 | 1 | -1/+0 |
| | | | | All supported Python versions support the with statement. | ||||
* | Fix icnorrect test | Ben Greenberg | 2017-06-15 | 1 | -1/+2 |
| | |||||
* | update tests to reflect the fact that the script sha is precalculated | Ben Greenberg | 2017-06-15 | 1 | -13/+18 |
| | |||||
* | pep8 fix | Hendrik Muhs | 2014-12-04 | 1 | -0/+1 |
| | |||||
* | fix pep8 | Hendrik Muhs | 2014-12-04 | 1 | -4/+5 |
| | |||||
* | UnicodeDecodeErrorfix unicode encode error when using pipeline in ↵ | Hendrik Muhs | 2014-12-04 | 1 | -0/+31 |
| | | | | combination with msgpack and lua | ||||
* | fix scripting tests on python3 | Andy McCurdy | 2014-04-10 | 1 | -2/+3 |
| | |||||
* | Make sure we know the SHA of scripts before pipeline execution. Fixes #459 | Andy McCurdy | 2014-04-09 | 1 | -0/+81 |