<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/kafka-python.git/test/record, branch bump_versions</title>
<subtitle>github.com: mumrah/kafka-python.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/'/>
<entry>
<title>Fix typos</title>
<updated>2019-11-08T13:21:16+00:00</updated>
<author>
<name>Carson Ip</name>
<email>carsonip715@gmail.com</email>
</author>
<published>2019-10-25T08:41:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=3861e16ea4ef8d60bc6ffc51c0183da33c629642'/>
<id>3861e16ea4ef8d60bc6ffc51c0183da33c629642</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix test_legacy_correct_metadata_response on x86 arch (#1718)</title>
<updated>2019-02-21T09:04:59+00:00</updated>
<author>
<name>Stanislav Levin</name>
<email>31205609+stanislavlevin@users.noreply.github.com</email>
</author>
<published>2019-02-21T09:04:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=03664ebe9ed8bc965391f925d50219eea4d6ac57'/>
<id>03664ebe9ed8bc965391f925d50219eea4d6ac57</id>
<content type='text'>
The problem is that the type of required operation result is
"long".

```
&gt;&gt;&gt; type(278251978 &amp; 0xffffffff)
&lt;type 'long'&gt;
```

However, by default "format" method uses __format__():

```
&gt;&gt;&gt; (278251978 &amp; 0xffffffff).__format__('')
'278251978'
```

So, let's compare things using the same engine:

```
&gt;&gt;&gt; "{!r}".format(278251978 &amp; 0xffffffff)
'278251978L'
```

Fixes: https://github.com/dpkp/kafka-python/issues/1717
Signed-off-by: Stanislav Levin &lt;slev@altlinux.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The problem is that the type of required operation result is
"long".

```
&gt;&gt;&gt; type(278251978 &amp; 0xffffffff)
&lt;type 'long'&gt;
```

However, by default "format" method uses __format__():

```
&gt;&gt;&gt; (278251978 &amp; 0xffffffff).__format__('')
'278251978'
```

So, let's compare things using the same engine:

```
&gt;&gt;&gt; "{!r}".format(278251978 &amp; 0xffffffff)
'278251978L'
```

Fixes: https://github.com/dpkp/kafka-python/issues/1717
Signed-off-by: Stanislav Levin &lt;slev@altlinux.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Add positive tests for headers in record encode/decode</title>
<updated>2018-09-27T22:22:03+00:00</updated>
<author>
<name>Heikki Nousiainen</name>
<email>htn@aiven.io</email>
</author>
<published>2018-08-29T14:02:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=9d30ab8bdbbd7e722ba4a96a6883a965d577d3cc'/>
<id>9d30ab8bdbbd7e722ba4a96a6883a965d577d3cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add codec validators to record parser and builder for all formats (#1447)</title>
<updated>2018-04-18T20:51:07+00:00</updated>
<author>
<name>Taras</name>
<email>voyn1991@gmail.com</email>
</author>
<published>2018-03-18T13:56:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=908ac8f8d253b20d70e36ce4bae1aefb51769221'/>
<id>908ac8f8d253b20d70e36ce4bae1aefb51769221</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix MemoryRecord bugs re error handling and add test coverage (#1448)</title>
<updated>2018-04-18T20:41:14+00:00</updated>
<author>
<name>Taras</name>
<email>voyn1991@gmail.com</email>
</author>
<published>2018-03-18T22:09:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=d9e41c8e8fb7033a3e9a9a7654bc2b0125f337a0'/>
<id>d9e41c8e8fb7033a3e9a9a7654bc2b0125f337a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use hardware accelerated CRC32C function if available (#1389)</title>
<updated>2018-02-21T21:05:31+00:00</updated>
<author>
<name>Taras Voinarovskyi</name>
<email>voyn1991@gmail.com</email>
</author>
<published>2018-02-21T21:05:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=0c0c7eae13f3b2b8e3ed7c443adef39cb6802a67'/>
<id>0c0c7eae13f3b2b8e3ed7c443adef39cb6802a67</id>
<content type='text'>
* Use hardware accelerated CRC32C function if available

* Add doc notice of optional `crc32c` package
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use hardware accelerated CRC32C function if available

* Add doc notice of optional `crc32c` package
</pre>
</div>
</content>
</entry>
<entry>
<title>Add DefaultRecordBatch implementation aka V2 message format parser/builder. (#1185)</title>
<updated>2017-10-24T22:28:35+00:00</updated>
<author>
<name>Taras Voinarovskyi</name>
<email>voyn1991@gmail.com</email>
</author>
<published>2017-10-24T22:28:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=8b05ee8da50b4c7b832676f4e38f9d92a86639cc'/>
<id>8b05ee8da50b4c7b832676f4e38f9d92a86639cc</id>
<content type='text'>
Added bytecode optimization for varint and append/read_msg functions. Mostly based on avoiding LOAD_GLOBAL calls.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added bytecode optimization for varint and append/read_msg functions. Mostly based on avoiding LOAD_GLOBAL calls.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix timestamp not passed to RecordMetadata (#1273)</title>
<updated>2017-10-22T07:56:28+00:00</updated>
<author>
<name>Taras Voinarovskyi</name>
<email>voyn1991@gmail.com</email>
</author>
<published>2017-10-22T07:56:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=a345dcd2ca1b0f8934864c512a4a78c65034dd36'/>
<id>a345dcd2ca1b0f8934864c512a4a78c65034dd36</id>
<content type='text'>
* Fix timestamp not being passed to RecordMetadata properly

* Add more tests for LegacyBatch

* Fix producer test for recordmetadata
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix timestamp not being passed to RecordMetadata properly

* Add more tests for LegacyBatch

* Fix producer test for recordmetadata
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor MessageSet and Message into LegacyRecordBatch to later support v2 message format</title>
<updated>2017-10-11T15:09:17+00:00</updated>
<author>
<name>Taras</name>
<email>voyn1991@gmail.com</email>
</author>
<published>2017-10-09T21:13:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=fbea5f04bccd28f3aa15a1711548b131504591ac'/>
<id>fbea5f04bccd28f3aa15a1711548b131504591ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
