<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/msgpack-python.git/msgpack, 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>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>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>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>
<entry>
<title>Fix error when use unicode_literal in Python 2</title>
<updated>2015-01-24T17:35:57+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-01-24T17:24:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=2985f4d8651982b07e2cfa7037e7a8c3530a127b'/>
<id>2985f4d8651982b07e2cfa7037e7a8c3530a127b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add max_&lt;type&gt;_len option to unpacker. (fixes #97).</title>
<updated>2015-01-24T16:41:21+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>inada-n@klab.com</email>
</author>
<published>2014-06-23T13:46:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=75ce78dd1512460712f2600ffd927bedeeb02fbc'/>
<id>75ce78dd1512460712f2600ffd927bedeeb02fbc</id>
<content type='text'>
Fix build error on 32bit environment (fixes #102).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix build error on 32bit environment (fixes #102).
</pre>
</div>
</content>
</entry>
<entry>
<title>0.4.4</title>
<updated>2015-01-09T00:53:44+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-01-09T00:53:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=deb8094e1d5fac491b770b6a0ec9580a665b83bc'/>
<id>deb8094e1d5fac491b770b6a0ec9580a665b83bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix compile error.</title>
<updated>2015-01-08T19:10:25+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-01-08T19:10:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=ee0e435535800e51004e64d827d66bd8d30a1735'/>
<id>ee0e435535800e51004e64d827d66bd8d30a1735</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of github.com:msgpack/msgpack-python</title>
<updated>2015-01-07T07:09:39+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-01-07T07:09:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=868d149efc79ff4f2e992a0ea052b6b79a0af460'/>
<id>868d149efc79ff4f2e992a0ea052b6b79a0af460</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.3</title>
<updated>2015-01-07T06:59:35+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-01-07T06:59:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/msgpack-python.git/commit/?id=5bc685973d133a6c47f28437d52040ee1ae0f1e5'/>
<id>5bc685973d133a6c47f28437d52040ee1ae0f1e5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
