<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/py-amqp.git/amqp/serialization.pxd, branch codeql</title>
<subtitle>github.com: celery/py-amqp.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/'/>
<entry>
<title>autopep8 + isort</title>
<updated>2020-11-08T16:42:57+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2020-11-08T16:42:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=84ba9fadf3364a21f3e603b4dc5afdf18c1afb91'/>
<id>84ba9fadf3364a21f3e603b4dc5afdf18c1afb91</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Multiple improvements of cythonized code</title>
<updated>2020-08-24T09:04:25+00:00</updated>
<author>
<name>Matus Valo</name>
<email>matusvalo@gmail.com</email>
</author>
<published>2020-08-20T11:41:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=9b31652fb679510f0f10ab7dedf47bd3daf8a466'/>
<id>9b31652fb679510f0f10ab7dedf47bd3daf8a466</id>
<content type='text'>
* set cython language_level = 3
* Cythonize amqp.method_framing.Buffer
* Use directly chr() function
* Cythonize str_to_bytes() and bytes_to_str() in amqp/utils.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* set cython language_level = 3
* Cythonize amqp.method_framing.Buffer
* Use directly chr() function
* Cythonize str_to_bytes() and bytes_to_str() in amqp/utils.py
</pre>
</div>
</content>
</entry>
<entry>
<title>Speedups of serialization.py are more restrictive</title>
<updated>2020-04-26T23:19:39+00:00</updated>
<author>
<name>Matus Valo</name>
<email>matusvalo@gmail.com</email>
</author>
<published>2020-04-26T16:12:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=8d0b37c649e3f30662c7ae43484ff4fa1baafd36'/>
<id>8d0b37c649e3f30662c7ae43484ff4fa1baafd36</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Cython generic content (#315)</title>
<updated>2020-04-20T23:18:18+00:00</updated>
<author>
<name>Matus Valo</name>
<email>matusvalo@users.noreply.github.com</email>
</author>
<published>2020-04-20T23:18:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=9f0476a6c78cd798cc95dd2d92536db8dbf3af39'/>
<id>9f0476a6c78cd798cc95dd2d92536db8dbf3af39</id>
<content type='text'>
* Cythonize GenericContent and Message classes

* Explicitely test pickling/unpickling of GenericContent class

* Fix pickling/unpickling of GenericContent in Python2.7

* Cythonize global variables</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Cythonize GenericContent and Message classes

* Explicitely test pickling/unpickling of GenericContent class

* Fix pickling/unpickling of GenericContent in Python2.7

* Cythonize global variables</pre>
</div>
</content>
</entry>
<entry>
<title>Implement speedups in cython (#311)</title>
<updated>2020-04-07T08:25:09+00:00</updated>
<author>
<name>Matus Valo</name>
<email>matusvalo@users.noreply.github.com</email>
</author>
<published>2020-04-07T08:25:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/py-amqp.git/commit/?id=88b829460d44f2c7e85e94263ae9a0f268a46ace'/>
<id>88b829460d44f2c7e85e94263ae9a0f268a46ace</id>
<content type='text'>
* Use __slots__ in GenericContent

* Remove unnecessary keyword parameters

* Added intial cython support

* Fixed unittests

* Revert delivery_info change

* Fix installing library

* Fix flake8

* Fixed failing unittests

* Added optional installation of speedups

* Comment that FrameSyntaxError is not raised and fixed unittests

* Fix flake8

* Rename PY_AMQP_ENABLE_CYTHON -&gt; CELERY_ENABLE_CYTHON

* Add cython headers for serializers, removed optional parameters from _write_item, update unittests

* Add test_speedups stage to CI

* Rename CELERY_ENABLE_CYTHON -&gt; CELERY_ENABLE_SPEEDUPS

* Remove unnecesary changes</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use __slots__ in GenericContent

* Remove unnecessary keyword parameters

* Added intial cython support

* Fixed unittests

* Revert delivery_info change

* Fix installing library

* Fix flake8

* Fixed failing unittests

* Added optional installation of speedups

* Comment that FrameSyntaxError is not raised and fixed unittests

* Fix flake8

* Rename PY_AMQP_ENABLE_CYTHON -&gt; CELERY_ENABLE_CYTHON

* Add cython headers for serializers, removed optional parameters from _write_item, update unittests

* Add test_speedups stage to CI

* Rename CELERY_ENABLE_CYTHON -&gt; CELERY_ENABLE_SPEEDUPS

* Remove unnecesary changes</pre>
</div>
</content>
</entry>
</feed>
