<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/kombu.git/t/unit/utils/test_encoding.py, branch remove-python2-support</title>
<subtitle>github.com: celery/kombu.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/kombu.git/'/>
<entry>
<title>autopep8.</title>
<updated>2020-08-04T14:37:29+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2020-08-04T14:27:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/kombu.git/commit/?id=85578afc4fea28adc16afdd3d7418b240357d96e'/>
<id>85578afc4fea28adc16afdd3d7418b240357d96e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove five usage from tests.</title>
<updated>2020-07-23T13:33:40+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2020-07-23T13:33:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/kombu.git/commit/?id=2c75db39e0d91c41384f5c2593ec2e630c8e7420'/>
<id>2c75db39e0d91c41384f5c2593ec2e630c8e7420</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pyupgrade</title>
<updated>2020-07-13T13:58:06+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2020-07-13T13:58:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/kombu.git/commit/?id=7a6e7cc45b9afe799770313a66c4211d1986ff30'/>
<id>7a6e7cc45b9afe799770313a66c4211d1986ff30</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes #791 - SQS queue name gets mangled in Python 2.7 environment (#794)</title>
<updated>2018-01-28T07:21:05+00:00</updated>
<author>
<name>John Koehl</name>
<email>jkoehl@gmail.com</email>
</author>
<published>2018-01-28T07:21:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/kombu.git/commit/?id=39e733c14347f982e38e27c9f9edd7c400798e69'/>
<id>39e733c14347f982e38e27c9f9edd7c400798e69</id>
<content type='text'>
* Fixes #791

* Changing to recommended patch by @georgepsarakis

* Revert "Fixes #791"

This reverts commit 5593505dd9deea5d0089d03cddfb3728f09a2048.

* Updated to make tests pass

* Made _ensure_str a private function

* Code formatting for flake8

* Added a mock of the newstr and newbytes classes to create a failing test that simulates the issue with using python-future under 2.7.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fixes #791

* Changing to recommended patch by @georgepsarakis

* Revert "Fixes #791"

This reverts commit 5593505dd9deea5d0089d03cddfb3728f09a2048.

* Updated to make tests pass

* Made _ensure_str a private function

* Code formatting for flake8

* Added a mock of the newstr and newbytes classes to create a failing test that simulates the issue with using python-future under 2.7.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make flake8 happy.</title>
<updated>2017-12-17T10:15:42+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2017-12-17T10:15:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/kombu.git/commit/?id=3a7cdb07c9bf75b54282274d711af15ca6ad5d9f'/>
<id>3a7cdb07c9bf75b54282274d711af15ca6ad5d9f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rewrite tests to use py.test</title>
<updated>2016-08-23T18:38:54+00:00</updated>
<author>
<name>Ask Solem</name>
<email>ask@celeryproject.org</email>
</author>
<published>2016-08-22T18:17:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/kombu.git/commit/?id=6d72e40e5b05d87ac82de739ce9bd854f1679888'/>
<id>6d72e40e5b05d87ac82de739ce9bd854f1679888</id>
<content type='text'>
NOTE: test_qpid was removed as it's breaking horribly.
It's currently trying to import symbols from kombu.transport.qpid
that don't exist.

assertRaises -&gt; pytest.raises

assertTrue

assertTrue - multiline

assertFalse

assertFalse - multiline

assertIsNone

assertIsNone - multiline

assertEqual

assertEqual - multiline

assertNotEqual

assertNotEqual - multiline

assertGreater - multiline

assertIn

assertIn - multiline

assertNotIn

assertNotIn - multiline

assertIsInstance

assertIsInstance - multiline

assertIsNot

assertIsNot - multiline

assertIsNotNone

assertIs

assertIs - multiline

Manual changes

Now depends on case 1.3.1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
NOTE: test_qpid was removed as it's breaking horribly.
It's currently trying to import symbols from kombu.transport.qpid
that don't exist.

assertRaises -&gt; pytest.raises

assertTrue

assertTrue - multiline

assertFalse

assertFalse - multiline

assertIsNone

assertIsNone - multiline

assertEqual

assertEqual - multiline

assertNotEqual

assertNotEqual - multiline

assertGreater - multiline

assertIn

assertIn - multiline

assertNotIn

assertNotIn - multiline

assertIsInstance

assertIsInstance - multiline

assertIsNot

assertIsNot - multiline

assertIsNotNone

assertIs

assertIs - multiline

Manual changes

Now depends on case 1.3.1
</pre>
</div>
</content>
</entry>
</feed>
