<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Tools/unicode/makeunicodedata.py, branch faster-bytes-iter</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/'/>
<entry>
<title>Update some www.unicode.org URLs to use HTTPS. (GH-18912)</title>
<updated>2020-03-11T04:10:59+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2020-03-11T04:10:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=51796e5d2632e6ada81ca677b4153f4ccd490702'/>
<id>51796e5d2632e6ada81ca677b4153f4ccd490702</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>closes bpo-39926: Update Unicode to 13.0.0. (GH-18910)</title>
<updated>2020-03-11T03:41:34+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2020-03-11T03:41:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=051b9d08d1e6a8b1022a2bd9166be51c0b152698'/>
<id>051b9d08d1e6a8b1022a2bd9166be51c0b152698</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37760: Convert from length-18 lists to a dataclass, in makeunicodedata. (GH-15265)</title>
<updated>2019-09-12T09:23:43+00:00</updated>
<author>
<name>Greg Price</name>
<email>gnprice@gmail.com</email>
</author>
<published>2019-09-12T09:23:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=a65678c5c90002c5e40fa82746de07e6217df625'/>
<id>a65678c5c90002c5e40fa82746de07e6217df625</id>
<content type='text'>
Now the fields have names!  Much easier to keep straight as a
reader than the elements of an 18-tuple.

Runs about 10-15% slower: from 10.8s to 12.3s, on my laptop.
Fortunately that's perfectly fine for this maintenance script.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now the fields have names!  Much easier to keep straight as a
reader than the elements of an 18-tuple.

Runs about 10-15% slower: from 10.8s to 12.3s, on my laptop.
Fortunately that's perfectly fine for this maintenance script.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37760: Avoid cluttering work tree with downloaded Unicode files. (GH-15128)</title>
<updated>2019-08-15T01:18:53+00:00</updated>
<author>
<name>Greg Price</name>
<email>gnprice@gmail.com</email>
</author>
<published>2019-08-15T01:18:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=3e4498d35c34aeaf4a9c3d57509b0d3277048ac6'/>
<id>3e4498d35c34aeaf4a9c3d57509b0d3277048ac6</id>
<content type='text'>

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37760: Factor out standard range-expanding logic in makeunicodedata. (GH-15248)</title>
<updated>2019-08-14T02:28:38+00:00</updated>
<author>
<name>Greg Price</name>
<email>gnprice@gmail.com</email>
</author>
<published>2019-08-14T02:28:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=c03e698c344dfc557555b6b07a3ee2702e45f6ee'/>
<id>c03e698c344dfc557555b6b07a3ee2702e45f6ee</id>
<content type='text'>
Much like the lower-level logic in commit ef2af1ad4, we had
4 copies of this logic, written in a couple of different ways.
They're all implementing the same standard, so write it just once.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Much like the lower-level logic in commit ef2af1ad4, we had
4 copies of this logic, written in a couple of different ways.
They're all implementing the same standard, so write it just once.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37760: Constant-fold some old options in makeunicodedata. (GH-15129)</title>
<updated>2019-08-13T05:59:30+00:00</updated>
<author>
<name>Greg Price</name>
<email>gnprice@gmail.com</email>
</author>
<published>2019-08-13T05:59:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=99d208efed97e02d813e8166925b998bbd0d3993'/>
<id>99d208efed97e02d813e8166925b998bbd0d3993</id>
<content type='text'>
The `expand` option was introduced in 2000 in commit fad27aee1.
It appears to have been always set since it was committed, and
what it does is tell the code to do something essential.  So,
just always do that, and cut the option.

Also cut the `linebreakprops` option, which isn't consulted anymore.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `expand` option was introduced in 2000 in commit fad27aee1.
It appears to have been always set since it was committed, and
what it does is tell the code to do something essential.  So,
just always do that, and cut the option.

Also cut the `linebreakprops` option, which isn't consulted anymore.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37760: Factor out the basic UCD parsing logic of makeunicodedata. (GH-15130)</title>
<updated>2019-08-13T05:20:56+00:00</updated>
<author>
<name>Greg Price</name>
<email>gnprice@gmail.com</email>
</author>
<published>2019-08-13T05:20:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=ef2af1ad44be0542a47270d5173a0b920c3a450d'/>
<id>ef2af1ad44be0542a47270d5173a0b920c3a450d</id>
<content type='text'>
There were 10 copies of this, and almost as many distinct versions of
exactly how it was written.  They're all implementing the same
standard.  Pull them out to the top, so the more interesting logic
that remains becomes easier to read.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There were 10 copies of this, and almost as many distinct versions of
exactly how it was written.  They're all implementing the same
standard.  Pull them out to the top, so the more interesting logic
that remains becomes easier to read.</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up and reduce visual clutter in the makeunicode.py script. (GH-7558)</title>
<updated>2019-06-01T19:49:03+00:00</updated>
<author>
<name>Stefan Behnel</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2019-06-01T19:49:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=faa2948654d15a859bc4317e00730ff213295764'/>
<id>faa2948654d15a859bc4317e00730ff213295764</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>closes bpo-36861: Update Unicode database to 12.1.0. (GH-13214)</title>
<updated>2019-05-09T03:59:35+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2019-05-09T03:59:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=3aca40d3cb4b9b6741cf3073d71fbfc682cab96d'/>
<id>3aca40d3cb4b9b6741cf3073d71fbfc682cab96d</id>
<content type='text'>
Adds ㋿.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds ㋿.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-36642: make unicodedata const (GH-12855)</title>
<updated>2019-04-16T23:40:34+00:00</updated>
<author>
<name>Inada Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2019-04-16T23:40:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=6fec905de5c139017f36b212e54cac46959808fe'/>
<id>6fec905de5c139017f36b212e54cac46959808fe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
