<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/docutils.git/docutils/utils/error_reporting.py, branch docutils-0.19</title>
<subtitle>svn.code.sf.net: p/docutils/code
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/'/>
<entry>
<title>Rename `io.locale_encoding` to mark it as internal.</title>
<updated>2022-06-17T11:31:40+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-06-17T11:31:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=07131b161d36c3c0a01ef27d64dd88d613dc8dc3'/>
<id>07131b161d36c3c0a01ef27d64dd88d613dc8dc3</id>
<content type='text'>
The attribute was moved to "io" after the last release.
Backwards compatibility is ensured via `locale_encoding`
in the (deprecated) "utils.error_reporting" module.

Fix HISTORY entries.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9078 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The attribute was moved to "io" after the last release.
Backwards compatibility is ensured via `locale_encoding`
in the (deprecated) "utils.error_reporting" module.

Fix HISTORY entries.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9078 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure locale_encoding is lower case.</title>
<updated>2022-06-15T15:28:35+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-06-15T15:28:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=3e4016cf8c89b2a46e40a9aad8e781afafa06c45'/>
<id>3e4016cf8c89b2a46e40a9aad8e781afafa06c45</id>
<content type='text'>
Use `locale.getpreferredencoding(False)` since we dropped support
for older Python versions with side-effects.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9074 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use `locale.getpreferredencoding(False)` since we dropped support
for older Python versions with side-effects.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9074 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid line break after binary operator.</title>
<updated>2022-03-05T23:29:48+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-03-05T23:29:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=7d3d07861b5345830bccb915393184df0bd7cd4f'/>
<id>7d3d07861b5345830bccb915393184df0bd7cd4f</id>
<content type='text'>
Breaking before binary operators is the recommended style
in PEP 8 (changed in April 2016).

flake8 rule W504

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9035 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Breaking before binary operators is the recommended style
in PEP 8 (changed in April 2016).

flake8 rule W504

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9035 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not use bare 'except'.</title>
<updated>2022-03-05T23:29:18+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-03-05T23:29:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=04703ce3a5ce6f4d257737a632f9b3f7a5f04a74'/>
<id>04703ce3a5ce6f4d257737a632f9b3f7a5f04a74</id>
<content type='text'>
flake8 rule E722

Exception: as catchall, if
* the right thing to do does not depend on the error
* any error is reported or risen again.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9033 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
flake8 rule E722

Exception: as catchall, if
* the right thing to do does not depend on the error
* any error is reported or risen again.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9033 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid too long lines.</title>
<updated>2022-03-05T23:28:32+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-03-05T23:28:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=2b719a700ee3013944c366d5549b6a290c4c28af'/>
<id>2b719a700ee3013944c366d5549b6a290c4c28af</id>
<content type='text'>
flake8 rule E501: line too long (N &gt; 79 characters)

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9030 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
flake8 rule E501: line too long (N &gt; 79 characters)

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9030 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure 2 blank lines around top-level functions and classes.</title>
<updated>2022-03-04T15:57:13+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-03-04T15:57:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=e45243a10d457bf01bbd3bf3aaf1aaa50e298cbf'/>
<id>e45243a10d457bf01bbd3bf3aaf1aaa50e298cbf</id>
<content type='text'>
flake8 rules
E302: expected 2 blank lines, found 1
E305: expected 2 blank lines after class or function definition

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9026 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
flake8 rules
E302: expected 2 blank lines, found 1
E305: expected 2 blank lines after class or function definition

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9026 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove excess blank lines.</title>
<updated>2022-03-04T15:55:47+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-03-04T15:55:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=a23dd51777ed41b80dad9a6af40c50da557a9a40'/>
<id>a23dd51777ed41b80dad9a6af40c50da557a9a40</id>
<content type='text'>
flakei rule E303: too many blank lines (N)

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9025 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
flakei rule E303: too many blank lines (N)

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9025 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix multiple spaces after keyword</title>
<updated>2022-03-04T15:55:13+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-03-04T15:55:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=2d3cd5bd27e470ec77e2df1dff097841136b755f'/>
<id>2d3cd5bd27e470ec77e2df1dff097841136b755f</id>
<content type='text'>
flake8 rule E271

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9023 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
flake8 rule E271

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9023 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix code indentation</title>
<updated>2022-01-29T16:28:17+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-01-29T16:28:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=46bf7a677077d072eb1a4bf5e645480a32a38a0c'/>
<id>46bf7a677077d072eb1a4bf5e645480a32a38a0c</id>
<content type='text'>
Check conformance to our coding policies with flake8.

Fix the following problems:

E111 indentation is not a multiple of four
E114 indentation is not a multiple of four (comment)
E115 expected an indented block (comment)
E116 unexpected indentation (comment)
E117 over-indented
E121 continuation line under-indented for hanging indent
E122 continuation line missing indentation or outdented
E124 closing bracked does not match visual indentaion
E127 continuation line over-indented for visual indent
E128 continuation line under-indented for visual indent
E131 continuation line unaligned for hanging indent

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8994 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Check conformance to our coding policies with flake8.

Fix the following problems:

E111 indentation is not a multiple of four
E114 indentation is not a multiple of four (comment)
E115 expected an indented block (comment)
E116 unexpected indentation (comment)
E117 over-indented
E121 continuation line under-indented for hanging indent
E122 continuation line missing indentation or outdented
E124 closing bracked does not match visual indentaion
E127 continuation line over-indented for visual indent
E128 continuation line under-indented for visual indent
E131 continuation line unaligned for hanging indent

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8994 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix trailing whitespace (flake warning W291).</title>
<updated>2022-01-29T10:48:46+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-01-29T10:48:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=ec73e1d49b0b5aae91f38fb21c48442ad174cb04'/>
<id>ec73e1d49b0b5aae91f38fb21c48442ad174cb04</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8992 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8992 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
</feed>
