<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/simplejson.git/simplejson/tests, branch cStringIO</title>
<subtitle>github.com: simplejson/simplejson.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/'/>
<entry>
<title>Support builds without cStringIO.</title>
<updated>2018-04-25T08:14:29+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-04-25T08:14:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=7c7b77d4beae7d2c69947fb1374177ce2095af4e'/>
<id>7c7b77d4beae7d2c69947fb1374177ce2095af4e</id>
<content type='text'>
The cStringIO module is optional. Fall back to StringIO if it
is not available.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The cStringIO module is optional. Fall back to StringIO if it
is not available.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow to disable serializing bytes by default in Python 3.</title>
<updated>2018-04-24T22:01:59+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-04-24T21:39:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=12e30827bc6224a133a1ccfb977c0bccb0c84576'/>
<id>12e30827bc6224a133a1ccfb977c0bccb0c84576</id>
<content type='text'>
If encoding is None, then bytes objects will be passed to the
default() method instead of transforming into unicode.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If encoding is None, then bytes objects will be passed to the
default() method instead of transforming into unicode.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #215 from simplejson/compat</title>
<updated>2018-04-24T20:36:18+00:00</updated>
<author>
<name>Bob Ippolito</name>
<email>bob@redivi.com</email>
</author>
<published>2018-04-24T20:36:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=2ec708bbc884b956c453eb057547cf0150294be9'/>
<id>2ec708bbc884b956c453eb057547cf0150294be9</id>
<content type='text'>
Simplify the compatibility code.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Simplify the compatibility code.</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify compatibility code.</title>
<updated>2018-04-24T17:33:09+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-04-24T17:33:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=51b69877435b8503b0400eb54461cded7f103ecb'/>
<id>51b69877435b8503b0400eb54461cded7f103ecb</id>
<content type='text'>
Since minimal supported Python 3 version is 3.3, the u() helper
no longer needed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since minimal supported Python 3 version is 3.3, the u() helper
no longer needed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix tests in Python 2.5.</title>
<updated>2018-04-24T17:29:32+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-04-24T17:28:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=32bc1a74a52c0ac81fd65d3f08a4dd94489bf32e'/>
<id>32bc1a74a52c0ac81fd65d3f08a4dd94489bf32e</id>
<content type='text'>
NamedTemporaryFile supports the "delete" argument only since 2.6.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
NamedTemporaryFile supports the "delete" argument only since 2.6.
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid escaping U+2028 and U+2029 without ensure_ascii</title>
<updated>2018-03-28T23:17:55+00:00</updated>
<author>
<name>Richard van der Hoff</name>
<email>richard@matrix.org</email>
</author>
<published>2018-03-28T23:17:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=19012377f349da419f80e91ecd41d5f09f90d32b'/>
<id>19012377f349da419f80e91ecd41d5f09f90d32b</id>
<content type='text'>
There is no need to escape U+2028 and U+2029 when ensure_ascii is false, and
doing so makes us inconsistent with the standard JSON library.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There is no need to escape U+2028 and U+2029 when ensure_ascii is false, and
doing so makes us inconsistent with the standard JSON library.
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid copying strings when encoding</title>
<updated>2018-03-27T22:42:43+00:00</updated>
<author>
<name>Richard van der Hoff</name>
<email>richard@matrix.org</email>
</author>
<published>2018-03-27T22:42:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=4e4ee05652472acb3bde31c5ad138b35d6c7dce9'/>
<id>4e4ee05652472acb3bde31c5ad138b35d6c7dce9</id>
<content type='text'>
d782561 introduced a performance regression which means that every string is
copied during serialisation, when ensure_ascii is False.

This should fix it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
d782561 introduced a performance regression which means that every string is
copied during serialisation, when ensure_ascii is False.

This should fix it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure that encoding text subtypes is consistent with or without speedups. Fixes #185</title>
<updated>2017-11-23T21:52:00+00:00</updated>
<author>
<name>Bob Ippolito</name>
<email>bob@redivi.com</email>
</author>
<published>2017-11-23T21:52:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=47bb9950941aed34aef4fcad3fd20a2585c696f2'/>
<id>47bb9950941aed34aef4fcad3fd20a2585c696f2</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 #191 from simplejson/type-error-messages</title>
<updated>2017-11-23T21:36:13+00:00</updated>
<author>
<name>Bob Ippolito</name>
<email>bob@redivi.com</email>
</author>
<published>2017-11-23T21:36:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=9127262d5c5ddc572c298ecd9f99fd426a9e9584'/>
<id>9127262d5c5ddc572c298ecd9f99fd426a9e9584</id>
<content type='text'>
Make TypeError messages contain type name instead of a repr.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make TypeError messages contain type name instead of a repr.</pre>
</div>
</content>
</entry>
<entry>
<title>Add tests.</title>
<updated>2017-11-23T21:25:26+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-11-23T21:25:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=5c57849b24fae8c071cbf62f205046d8120a0c80'/>
<id>5c57849b24fae8c071cbf62f205046d8120a0c80</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
