<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/unidecode.git/unidecode, branch unidecode-1.1.0</title>
<subtitle>www.tablix.org: ~avian/git/unidecode.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/'/>
<entry>
<title>Add more latin variants in U+1F1xx page.</title>
<updated>2019-01-19T11:09:22+00:00</updated>
<author>
<name>Tomaz Solc</name>
<email>tomaz.solc@tablix.org</email>
</author>
<published>2019-01-19T11:09:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/commit/?id=a5045ab11f73d6ca9cf74950fded8586639b89bd'/>
<id>a5045ab11f73d6ca9cf74950fded8586639b89bd</id>
<content type='text'>
This adds:

- SQUARED LATIN CAPITAL LETTERs,
- NEGATIVE CIRCLED LATIN CAPITAL LETTERs,
- NEGATIVE SQUARED LATIN CAPITAL LETTERs,
- TORTOISE SHELL BRACKETED LATIN CAPITAL LETTERs and
- CIRCLED ITALIC LATIN CAPITAL LETTERs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds:

- SQUARED LATIN CAPITAL LETTERs,
- NEGATIVE CIRCLED LATIN CAPITAL LETTERs,
- NEGATIVE SQUARED LATIN CAPITAL LETTERs,
- TORTOISE SHELL BRACKETED LATIN CAPITAL LETTERs and
- CIRCLED ITALIC LATIN CAPITAL LETTERs
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'jdufresne/main'</title>
<updated>2019-01-19T11:00:08+00:00</updated>
<author>
<name>Tomaz Solc</name>
<email>tomaz.solc@tablix.org</email>
</author>
<published>2019-01-19T11:00:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/commit/?id=469932c75c14757f119da83b6db7c26a1a75fa2f'/>
<id>469932c75c14757f119da83b6db7c26a1a75fa2f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'jdufresne/b-literal'</title>
<updated>2019-01-19T10:32:31+00:00</updated>
<author>
<name>Tomaz Solc</name>
<email>tomaz.solc@tablix.org</email>
</author>
<published>2019-01-19T10:32:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/commit/?id=b82f0d43be712e550e911d3e63cf45152fbf52cc'/>
<id>b82f0d43be712e550e911d3e63cf45152fbf52cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'jdufresne/argparse'</title>
<updated>2019-01-19T10:32:03+00:00</updated>
<author>
<name>Tomaz Solc</name>
<email>tomaz.solc@tablix.org</email>
</author>
<published>2019-01-19T10:32:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/commit/?id=d31c81503a112e3e0161ae55ba6a33a149cfc892'/>
<id>d31c81503a112e3e0161ae55ba6a33a149cfc892</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add __main__.py file so the CLI can be executed as a module</title>
<updated>2018-12-31T17:14:36+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-12-31T17:14:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/commit/?id=40bb63128de14b98fc083e6807bdd78ee8eb487b'/>
<id>40bb63128de14b98fc083e6807bdd78ee8eb487b</id>
<content type='text'>
Allows running the following command to execute the CLI

     $ python -m unidecode ...

https://docs.python.org/3/library/__main__.html

&gt; For a package, the same effect can be achieved by including a
&gt; __main__.py module, the contents of which will be executed when the
&gt; module is run with -m.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allows running the following command to execute the CLI

     $ python -m unidecode ...

https://docs.python.org/3/library/__main__.html

&gt; For a package, the same effect can be achieved by including a
&gt; __main__.py module, the contents of which will be executed when the
&gt; module is run with -m.
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace string literal + encode with bytes literal</title>
<updated>2018-12-31T14:49:58+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-12-31T14:49:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/commit/?id=887891a6e17ceb7f3c4c1cd129b41c1d58f1019a'/>
<id>887891a6e17ceb7f3c4c1cd129b41c1d58f1019a</id>
<content type='text'>
Simpler and more forward compatible. The b prefix syntax is available on
all supported Pythons.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Simpler and more forward compatible. The b prefix syntax is available on
all supported Pythons.
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace use of deprecated optparse with argparse</title>
<updated>2018-12-31T14:42:58+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-12-31T14:19:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/commit/?id=62a7e521ed35adb48b7afaf2b63a0f16a4a8ebbe'/>
<id>62a7e521ed35adb48b7afaf2b63a0f16a4a8ebbe</id>
<content type='text'>
The Python project considers the optparse module as deprecated. See:

https://docs.python.org/3/library/optparse.html

&gt; Deprecated since version 3.2: The optparse module is deprecated and
&gt; will not be developed further; development will continue with the
&gt; argparse module.

Replace the project's use with the newer argparse. The CLI is fully
equivalent and should not result in any backwards comparability
concerns.

https://docs.python.org/3/library/argparse.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The Python project considers the optparse module as deprecated. See:

https://docs.python.org/3/library/optparse.html

&gt; Deprecated since version 3.2: The optparse module is deprecated and
&gt; will not be developed further; development will continue with the
&gt; argparse module.

Replace the project's use with the newer argparse. The CLI is fully
equivalent and should not result in any backwards comparability
concerns.

https://docs.python.org/3/library/argparse.html
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused import from unidecode/util.py</title>
<updated>2018-12-31T14:01:31+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-12-31T14:01:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/commit/?id=49241a59058bee94a00c696d7981620854e4ad58'/>
<id>49241a59058bee94a00c696d7981620854e4ad58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix "SQUARE V OVER M" and "SQUARE A OVER M".</title>
<updated>2018-06-19T18:37:05+00:00</updated>
<author>
<name>Tomaz Solc</name>
<email>tomaz.solc@tablix.org</email>
</author>
<published>2018-06-19T18:35:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/commit/?id=bb723e2ddb07c943c692ec08087c5b70fcdc4632'/>
<id>bb723e2ddb07c943c692ec08087c5b70fcdc4632</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use uA instead of microampere, etc.</title>
<updated>2018-06-19T18:36:53+00:00</updated>
<author>
<name>Tomaz Solc</name>
<email>tomaz.solc@tablix.org</email>
</author>
<published>2018-06-19T18:31:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/unidecode.git/commit/?id=2fcca2e2c6c37c59af173c5eb372f47bdaae3c65'/>
<id>2fcca2e2c6c37c59af173c5eb372f47bdaae3c65</id>
<content type='text'>
These codepoints are defined as "Greek small letter mu" and a Latin capital
letter, not with spelled-out unit names.

"u" is a common way of representing "micro" SI prefix in ASCII.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These codepoints are defined as "Greek small letter mu" and a Latin capital
letter, not with spelled-out unit names.

"u" is a common way of representing "micro" SI prefix in ASCII.
</pre>
</div>
</content>
</entry>
</feed>
