<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/redis-py.git/tests/test_monitor.py, branch ROLE</title>
<subtitle>github.com: andymccurdy/redis-py.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/'/>
<entry>
<title>Added black and isort (#1734)</title>
<updated>2021-11-30T16:05:51+00:00</updated>
<author>
<name>Anas</name>
<email>anas.el.amraoui@live.com</email>
</author>
<published>2021-11-30T16:05:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/commit/?id=b94e230b17d08e6c89d134e933c706256b79bc4a'/>
<id>b94e230b17d08e6c89d134e933c706256b79bc4a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Adding RedisCluster client to support Redis Cluster Mode (#1660)</title>
<updated>2021-11-25T12:15:24+00:00</updated>
<author>
<name>Bar Shaul</name>
<email>88437685+barshaul@users.noreply.github.com</email>
</author>
<published>2021-11-25T12:15:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/commit/?id=9db1eec71b443b8e7e74ff503bae651dc6edf411'/>
<id>9db1eec71b443b8e7e74ff503bae651dc6edf411</id>
<content type='text'>
Co-authored-by: Chayim &lt;chayim@users.noreply.github.com&gt;
Co-authored-by: Anas &lt;anas.el.amraoui@live.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Chayim &lt;chayim@users.noreply.github.com&gt;
Co-authored-by: Anas &lt;anas.el.amraoui@live.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes to allow --redis-url to pass through all tests (#1700)</title>
<updated>2021-11-11T10:38:27+00:00</updated>
<author>
<name>Chayim</name>
<email>chayim@users.noreply.github.com</email>
</author>
<published>2021-11-11T10:38:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/commit/?id=6a293e685d27894bc99ea4c0c7312c81f099ca45'/>
<id>6a293e685d27894bc99ea4c0c7312c81f099ca45</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Unit test fixes to carry pytest options through all tests (#1696)</title>
<updated>2021-11-10T13:54:46+00:00</updated>
<author>
<name>Chayim</name>
<email>chayim@users.noreply.github.com</email>
</author>
<published>2021-11-10T13:54:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/commit/?id=5be96b96d6059a61d0fd50f96a32db99975408ed'/>
<id>5be96b96d6059a61d0fd50f96a32db99975408ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove support for end-of-life Python 2.7 (#1318)</title>
<updated>2020-08-06T22:15:02+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2020-08-06T22:15:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/commit/?id=8c5a41baf0bd2a1388d601e5b49d06b91997ccb8'/>
<id>8c5a41baf0bd2a1388d601e5b49d06b91997ccb8</id>
<content type='text'>
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 &lt;andy@andymccurdy.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 &lt;andy@andymccurdy.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Do not un-escape \ characters when parsing MONITOR output</title>
<updated>2020-06-08T19:58:25+00:00</updated>
<author>
<name>Andy McCurdy</name>
<email>andy@andymccurdy.com</email>
</author>
<published>2020-06-08T19:58:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/commit/?id=7e466f7bee41d88e01d22e3a4c904e0e578630c9'/>
<id>7e466f7bee41d88e01d22e3a4c904e0e578630c9</id>
<content type='text'>
Prior to this, escaped slashes ("\\") were un-escaped. This caused the strings
"foo\x92" and "foo\\x92" to be represented the same way in the output.

Fixes #1349
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prior to this, escaped slashes ("\\") were un-escaped. This caused the strings
"foo\x92" and "foo\\x92" to be represented the same way in the output.

Fixes #1349
</pre>
</div>
</content>
</entry>
<entry>
<title>Clear pipeline watch state after exec</title>
<updated>2020-03-11T01:32:27+00:00</updated>
<author>
<name>Nick Gaya</name>
<email>nicholasgaya+github@gmail.com</email>
</author>
<published>2020-03-05T09:59:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/commit/?id=9c8be70e12c501dd0682232e9a7b686ac5e70ec3'/>
<id>9c8be70e12c501dd0682232e9a7b686ac5e70ec3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop unused variables and imports (#1284)</title>
<updated>2020-02-12T22:03:01+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2020-02-12T22:03:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/commit/?id=c8de2342d55bdd0cbd450148878d2789d8b4a7cd'/>
<id>c8de2342d55bdd0cbd450148878d2789d8b4a7cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support old EPEL-7 Redis. (#1227)</title>
<updated>2019-10-18T07:47:27+00:00</updated>
<author>
<name>tuxmaster5000</name>
<email>837503+tuxmaster5000@users.noreply.github.com</email>
</author>
<published>2019-10-18T07:47:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/commit/?id=90532bd2c4d6d74110ab37d800653d7abafe2e0b'/>
<id>90532bd2c4d6d74110ab37d800653d7abafe2e0b</id>
<content type='text'>
Fix test suite with Redis versions pre-5.0.0</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix test suite with Redis versions pre-5.0.0</pre>
</div>
</content>
</entry>
<entry>
<title>version 3.3.8, fix MONITOR output to account for all types of clients</title>
<updated>2019-08-19T19:30:39+00:00</updated>
<author>
<name>huangwei-ds5</name>
<email>huangwei-ds5@gome.com.cn</email>
</author>
<published>2019-08-09T07:54:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/redis-py.git/commit/?id=d811ae71dbdbeeb4fc0ee73a96b7fbdb1aec8522'/>
<id>d811ae71dbdbeeb4fc0ee73a96b7fbdb1aec8522</id>
<content type='text'>
The client section of MONITOR output varies for TCP connections, unix socket
connections and commands executed from Lua scripts. Account for each of these
cases by including an additional key `client_type` in the MONITOR output.
`client_type` will be one of ('tcp', 'unix', 'lua'). `client_address` and
`client_port` vary based on the `client_type`.

Fixes #1201
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The client section of MONITOR output varies for TCP connections, unix socket
connections and commands executed from Lua scripts. Account for each of these
cases by including an additional key `client_type` in the MONITOR output.
`client_type` will be one of ('tcp', 'unix', 'lua'). `client_address` and
`client_port` vary based on the `client_type`.

Fixes #1201
</pre>
</div>
</content>
</entry>
</feed>
