<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/simplejson.git, branch tempfile-py25</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>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>v3.14.0</title>
<updated>2018-04-21T22:07:48+00:00</updated>
<author>
<name>Bob Ippolito</name>
<email>bob@redivi.com</email>
</author>
<published>2018-04-21T22:07:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=729945a655b2c351ad4c91293a494c066f3bb152'/>
<id>729945a655b2c351ad4c91293a494c066f3bb152</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 #212 from richvdh/rav/defer_is_rawjson_test</title>
<updated>2018-04-09T17:10:07+00:00</updated>
<author>
<name>Bob Ippolito</name>
<email>bob@redivi.com</email>
</author>
<published>2018-04-09T17:10:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=967a3b33f6df1eb360cb41753f859c5ba309e09e'/>
<id>967a3b33f6df1eb360cb41753f859c5ba309e09e</id>
<content type='text'>
Defer is_raw_json test</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Defer is_raw_json test</pre>
</div>
</content>
</entry>
<entry>
<title>Defer is_raw_json test</title>
<updated>2018-04-03T16:33:02+00:00</updated>
<author>
<name>Richard van der Hoff</name>
<email>richard@matrix.org</email>
</author>
<published>2018-04-03T16:33:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=17c8dedb66001dc89cb219b1dc1194d0a815b9d3'/>
<id>17c8dedb66001dc89cb219b1dc1194d0a815b9d3</id>
<content type='text'>
Instances of RawJSON are unusual; by moving the test for them to lower in
encoder_listencode_obj, we get a 12% performance improvement in my tests by not
doing the instanceof test.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instances of RawJSON are unusual; by moving the test for them to lower in
encoder_listencode_obj, we get a 12% performance improvement in my tests by not
doing the instanceof test.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #211 from richvdh/rav/fix_linebreak_encoding</title>
<updated>2018-04-02T17:40:47+00:00</updated>
<author>
<name>Bob Ippolito</name>
<email>bob@redivi.com</email>
</author>
<published>2018-04-02T17:40:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=ca2f85ed1f6a7d7679af942faa695f95c30ccbda'/>
<id>ca2f85ed1f6a7d7679af942faa695f95c30ccbda</id>
<content type='text'>
Avoid escaping U+2028 and U+2029 without ensure_ascii</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Avoid escaping U+2028 and U+2029 without ensure_ascii</pre>
</div>
</content>
</entry>
<entry>
<title>Remove redundant parts of ESCAPE and ESCAPE_DCT</title>
<updated>2018-03-29T07:59:00+00:00</updated>
<author>
<name>Richard van der Hoff</name>
<email>richard@matrix.org</email>
</author>
<published>2018-03-29T07:59:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=3309d122f922540102da1463744e1ad54c3ccb18'/>
<id>3309d122f922540102da1463744e1ad54c3ccb18</id>
<content type='text'>
* `\b\f\n\r\t` are all in the range `\x00-\x1f` so can be omitted from ESCAPE
* `ESCAPE_DCT[0x2028:0x2029]` is no longer used in `encode_basestring`, and
  `py_encode_basestring_ascii` handles them via the generic `\uNNNN` code, so
  these entries can be removed from `ESCAPE_DCT`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* `\b\f\n\r\t` are all in the range `\x00-\x1f` so can be omitted from ESCAPE
* `ESCAPE_DCT[0x2028:0x2029]` is no longer used in `encode_basestring`, and
  `py_encode_basestring_ascii` handles them via the generic `\uNNNN` code, so
  these entries can be removed from `ESCAPE_DCT`.
</pre>
</div>
</content>
</entry>
<entry>
<title>documentation updates</title>
<updated>2018-03-29T07:58:41+00:00</updated>
<author>
<name>Richard van der Hoff</name>
<email>richard@matrix.org</email>
</author>
<published>2018-03-29T07:58:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=f3ac28677376720c84f60cb74dd9f1ba8fd4f807'/>
<id>f3ac28677376720c84f60cb74dd9f1ba8fd4f807</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update documentation for JSONEncoderForHTML</title>
<updated>2018-03-29T06:15:08+00:00</updated>
<author>
<name>Richard van der Hoff</name>
<email>richard@matrix.org</email>
</author>
<published>2018-03-29T06:15:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=e45a6ae5df74d0881d9d9e5f6cd28e6c4d336637'/>
<id>e45a6ae5df74d0881d9d9e5f6cd28e6c4d336637</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve docstring on JSONEncoderForHTML</title>
<updated>2018-03-29T06:11:32+00:00</updated>
<author>
<name>Richard van der Hoff</name>
<email>richard@matrix.org</email>
</author>
<published>2018-03-29T06:11:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=8ea5f90e6eadcf6a1ce4bb3908e954f7253aa3ae'/>
<id>8ea5f90e6eadcf6a1ce4bb3908e954f7253aa3ae</id>
<content type='text'>
Document the U+2028 and U+2029 behavior.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Document the U+2028 and U+2029 behavior.
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify ESCAPE regexp construction</title>
<updated>2018-03-29T06:10:00+00:00</updated>
<author>
<name>Richard van der Hoff</name>
<email>richard@matrix.org</email>
</author>
<published>2018-03-29T06:10:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/simplejson.git/commit/?id=05b8f6dfdfcf49cc1f7ebf8bbb38b7be274ad40f'/>
<id>05b8f6dfdfcf49cc1f7ebf8bbb38b7be274ad40f</id>
<content type='text'>
Now that we do not include \uNNNN escapes in the regex, we can use a raw string
rather than having to double-escape everything.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now that we do not include \uNNNN escapes in the regex, we can use a raw string
rather than having to double-escape everything.
</pre>
</div>
</content>
</entry>
</feed>
