<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/kombu.git/kombu/utils/encoding.py, branch py310</title>
<subtitle>github.com: celery/kombu.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/'/>
<entry>
<title>Bump pyupgrade version and add __future__.annotations import</title>
<updated>2022-04-15T08:16:57+00:00</updated>
<author>
<name>Marcelo Trylesinski</name>
<email>marcelotryle@gmail.com</email>
</author>
<published>2022-04-14T11:02:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=7516daf7a774dd9671d16c475c6ac266de977a0a'/>
<id>7516daf7a774dd9671d16c475c6ac266de977a0a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>enable pre-commit (#1355)</title>
<updated>2021-07-20T13:07:49+00:00</updated>
<author>
<name>Thomas Grainger</name>
<email>tagrain@gmail.com</email>
</author>
<published>2021-07-20T13:07:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=241b5dcff8a7c8ad411e1b325d59e47acfa9e1ed'/>
<id>241b5dcff8a7c8ad411e1b325d59e47acfa9e1ed</id>
<content type='text'>
* enable pre-commit

* use extend-ignore for flake8

* manual flake8 fixes

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update kombu/__init__.py

Co-authored-by: pre-commit-ci[bot] &lt;66853113+pre-commit-ci[bot]@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* enable pre-commit

* use extend-ignore for flake8

* manual flake8 fixes

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update kombu/__init__.py

Co-authored-by: pre-commit-ci[bot] &lt;66853113+pre-commit-ci[bot]@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Remove string types compat code.</title>
<updated>2020-08-05T10:03:10+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2020-08-05T10:03:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=0c0261eb318bb43c706b0bc0dc4bc7abde915a7b'/>
<id>0c0261eb318bb43c706b0bc0dc4bc7abde915a7b</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 kombu/utils.</title>
<updated>2020-07-23T13:29:29+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2020-07-23T13:29:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=1916b815f88551138ff26eda3e4af4c519c893e3'/>
<id>1916b815f88551138ff26eda3e4af4c519c893e3</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://git.baserock.org/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>fix bytes_to_str bug (#747)</title>
<updated>2018-11-29T16:30:52+00:00</updated>
<author>
<name>Jian Dai</name>
<email>daijian1@qq.com</email>
</author>
<published>2018-11-29T16:30:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=571b0ad205ab8d71df7ec489a1fab7b17e1668da'/>
<id>571b0ad205ab8d71df7ec489a1fab7b17e1668da</id>
<content type='text'>
When we were using celery , and using `pickle` format to transfer a bytes variable like a file content, for example a picture file, then we will get an exception here. 
```UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte```
So add `errors='replace'` to avoid the encoding error here.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When we were using celery , and using `pickle` format to transfer a bytes variable like a file content, for example a picture file, then we will get an exception here. 
```UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte```
So add `errors='replace'` to avoid the encoding error here.</pre>
</div>
</content>
</entry>
<entry>
<title>Cleaned up redundant PY3 constants (#854)</title>
<updated>2018-04-29T16:01:35+00:00</updated>
<author>
<name>Asif Saifuddin Auvi</name>
<email>auvipy@gmail.com</email>
</author>
<published>2018-04-29T16:01:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=824491b9727def9deb2c97275b3344b2f4436aa3'/>
<id>824491b9727def9deb2c97275b3344b2f4436aa3</id>
<content type='text'>
* Cleaned up redundent PY3 constants in utils/encoding

* Cleaned up redundent PY3 constants in utils/json

* fixed flake8 error
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Cleaned up redundent PY3 constants in utils/encoding

* Cleaned up redundent PY3 constants in utils/json

* fixed flake8 error
</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://git.baserock.org/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>Adds pydocstyle as a tox target</title>
<updated>2016-10-11T19:33:31+00:00</updated>
<author>
<name>Ask Solem</name>
<email>ask@celeryproject.org</email>
</author>
<published>2016-10-11T19:33:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=836512cadd23c96f23bbb5cd8f4a1bf83c36ab19'/>
<id>836512cadd23c96f23bbb5cd8f4a1bf83c36ab19</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Google-style docstrings</title>
<updated>2016-07-16T18:51:23+00:00</updated>
<author>
<name>Ask Solem</name>
<email>ask@celeryproject.org</email>
</author>
<published>2016-07-16T18:51:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=87a5568bc8ffa02f56ad79d6ceaa11779d87be68'/>
<id>87a5568bc8ffa02f56ad79d6ceaa11779d87be68</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
