<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/msgpack-python.git, branch travis/cython-0.22</title>
<subtitle>github.com: msgpack/msgpack-python.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/'/>
<entry>
<title>travis: Build only master</title>
<updated>2015-03-12T19:18:10+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-03-12T19:18:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=2dda8fc4a58dd9be0c8d6f472342fd777d92886d'/>
<id>2dda8fc4a58dd9be0c8d6f472342fd777d92886d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>travis: Cython 0.22</title>
<updated>2015-03-12T19:05:44+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-03-12T19:05:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=b19e336108ed86ba344eeaccc9476244848e4dd4'/>
<id>b19e336108ed86ba344eeaccc9476244848e4dd4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>0.4.6</title>
<updated>2015-03-12T18:51:14+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-03-12T18:51:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=9fe19cc4089467fff185399c659ffe72f2f52995'/>
<id>9fe19cc4089467fff185399c659ffe72f2f52995</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fallback: Add some comment to Unpacker members.</title>
<updated>2015-01-27T05:04:32+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-01-27T05:04:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=4576b94b6c9c641bfa29a1d161968822d6e67d19'/>
<id>4576b94b6c9c641bfa29a1d161968822d6e67d19</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #125 from bwesterb/master</title>
<updated>2015-01-27T05:03:30+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>methane@users.noreply.github.com</email>
</author>
<published>2015-01-27T05:03:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=3f5e0582648b04c2b3e6663ed946462b3d7df02e'/>
<id>3f5e0582648b04c2b3e6663ed946462b3d7df02e</id>
<content type='text'>
Rollback to correct position in the case of OutOfData.

Fixes #124</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rollback to correct position in the case of OutOfData.

Fixes #124</pre>
</div>
</content>
</entry>
<entry>
<title>test_sequnpack: python3 literals</title>
<updated>2015-01-26T19:55:23+00:00</updated>
<author>
<name>Bas Westerbaan</name>
<email>bas@westerbaan.name</email>
</author>
<published>2015-01-26T19:55:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=c5d621853d305418feb3ef2616a05f5eb12440bb'/>
<id>c5d621853d305418feb3ef2616a05f5eb12440bb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #124</title>
<updated>2015-01-26T19:34:31+00:00</updated>
<author>
<name>Bas Westerbaan</name>
<email>bas@westerbaan.name</email>
</author>
<published>2015-01-26T19:34:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=a71a24d86aca4747a954ac642a9173a05cedd257'/>
<id>a71a24d86aca4747a954ac642a9173a05cedd257</id>
<content type='text'>
When using Unpacker as an iterator, after each yield, the internal
buffer (_fb_buffer) was compacted by reallocation (done by _fb_consume).
When dealing with a lot of small objects, this is very ineffecient.
Thus in commit 7eb371f8278941fb2323e0c2333ed89c88ab822b the pure python
fallback only reallocated the complete buffer when the iteration stops.
When halfway there happens to be data missing in the buffer, we rollback
the buffer to the state before this failed call, and raise an OutOfData.
This rollback, done by _fb_rollback, did not consider the possibility
that the buffer was *not* reallocated.  This commit corrects that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When using Unpacker as an iterator, after each yield, the internal
buffer (_fb_buffer) was compacted by reallocation (done by _fb_consume).
When dealing with a lot of small objects, this is very ineffecient.
Thus in commit 7eb371f8278941fb2323e0c2333ed89c88ab822b the pure python
fallback only reallocated the complete buffer when the iteration stops.
When halfway there happens to be data missing in the buffer, we rollback
the buffer to the state before this failed call, and raise an OutOfData.
This rollback, done by _fb_rollback, did not consider the possibility
that the buffer was *not* reallocated.  This commit corrects that.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for issue #124</title>
<updated>2015-01-26T19:31:03+00:00</updated>
<author>
<name>Bas Westerbaan</name>
<email>bas@westerbaan.name</email>
</author>
<published>2015-01-26T19:31:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=83404945c06baa3124d7e20a2d4e93652ecf90c5'/>
<id>83404945c06baa3124d7e20a2d4e93652ecf90c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>update README</title>
<updated>2015-01-25T15:39:50+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-01-25T15:39:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=68b029446569bdaf77518ceda99da822b0b26f21'/>
<id>68b029446569bdaf77518ceda99da822b0b26f21</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>0.4.5</title>
<updated>2015-01-25T15:38:36+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-01-25T15:38:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=630c046bf2dcd9f77c09efb65a51ec1b3d915975'/>
<id>630c046bf2dcd9f77c09efb65a51ec1b3d915975</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
