<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/docutils.git/docutils/utils/code_analyzer.py, branch docutils-0.17</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>Update pygments integration.</title>
<updated>2021-01-03T21:05:13+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2021-01-03T21:05:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=7e6c9edbc6fea18f0afaf497047e83afd0d0aa4f'/>
<id>7e6c9edbc6fea18f0afaf497047e83afd0d0aa4f</id>
<content type='text'>
Pygments no longer uses the pkg_resources.DistributionNotFound
exception, so we don't need to import it.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8599 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pygments no longer uses the pkg_resources.DistributionNotFound
exception, so we don't need to import it.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8599 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't drop "code" directive content if Warnings are silenced.</title>
<updated>2020-12-16T10:41:03+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2020-12-16T10:41:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=1a02118c883f579874bf977546e64843fed5e028'/>
<id>1a02118c883f579874bf977546e64843fed5e028</id>
<content type='text'>
Output the content without syntax highlight to prevent
data loss.

It is still recommended to solve the issue instead of just
silencing the warning. (Languages that are unknown to the
Pygments Lexer should be specified as :class: option value
instead of directive argument.)

Thanks to Jérôme Carretero for the report and suggestion.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8596 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Output the content without syntax highlight to prevent
data loss.

It is still recommended to solve the issue instead of just
silencing the warning. (Languages that are unknown to the
Pygments Lexer should be specified as :class: option value
instead of directive argument.)

Thanks to Jérôme Carretero for the report and suggestion.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8596 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>py3: Replace 'foo.next()' with 'next(foo)'</title>
<updated>2019-08-26T16:46:50+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2019-08-26T16:46:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=9a978b58b0052d5e019fcb56b8b19c2ecbeed179'/>
<id>9a978b58b0052d5e019fcb56b8b19c2ecbeed179</id>
<content type='text'>
The former only works in Python 2, while the latter works in Python 2.7
and 3.x.

Signed-off-by: Stephen Finucane &lt;stephen@that.guru&gt;

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8361 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The former only works in Python 2, while the latter works in Python 2.7
and 3.x.

Signed-off-by: Stephen Finucane &lt;stephen@that.guru&gt;

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8361 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop support for Python 3.3</title>
<updated>2019-08-26T12:09:42+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2019-08-26T12:09:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=0fdce7caf83f8d18ce93f6ec880c907b5ff8bede'/>
<id>0fdce7caf83f8d18ce93f6ec880c907b5ff8bede</id>
<content type='text'>
This doesn't involve a whole lot of changes, but references to Python
3.3 (plus some to the already removed Python 2.6) are removed and
'setup.py' is updated as necessary.

Signed-off-by: Stephen Finucane &lt;stephen@that.guru&gt;

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8338 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This doesn't involve a whole lot of changes, but references to Python
3.3 (plus some to the already removed Python 2.6) are removed and
'setup.py' is updated as necessary.

Signed-off-by: Stephen Finucane &lt;stephen@that.guru&gt;

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8338 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix code_analyzer problem under Python 3.3.</title>
<updated>2018-01-16T20:43:16+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2018-01-16T20:43:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=7515952a928b8e79842f149d0fa3a092b6376ea2'/>
<id>7515952a928b8e79842f149d0fa3a092b6376ea2</id>
<content type='text'>
Handle pkg_resources.DistributionNotFound error raised by pygments if
no lexer can be found for a "code" role or directive.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8213 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Handle pkg_resources.DistributionNotFound error raised by pygments if
no lexer can be found for a "code" role or directive.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8213 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop compatibility code for Python 2.4 and 2.5.</title>
<updated>2017-08-11T14:05:30+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2017-08-11T14:05:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=1a25c166fc8f480ae6b476cf2e0a24a478548419'/>
<id>1a25c166fc8f480ae6b476cf2e0a24a478548419</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8163 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@8163 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Safe import of "pygments": syntax errors with Py 3.1 and 3.2.</title>
<updated>2015-04-20T14:05:27+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2015-04-20T14:05:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=1aa3eddeadf5b2cb5a1eaabd16551b32aa164d59'/>
<id>1aa3eddeadf5b2cb5a1eaabd16551b32aa164d59</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7884 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@7884 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>docutils.utils is now a package (providing a place for sub-modules)</title>
<updated>2011-12-20T14:14:21+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2011-12-20T14:14:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=ca5e2838fc5dc108f02ad5770dd9e57ca685ba7c'/>
<id>ca5e2838fc5dc108f02ad5770dd9e57ca685ba7c</id>
<content type='text'>
important:: docutils/math, docutils/error_reporting.py, and
docutils/urischemes.py will move to the utils package in the next
release, too. Code importing these modules needs to adapt.


git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7267 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
important:: docutils/math, docutils/error_reporting.py, and
docutils/urischemes.py will move to the utils package in the next
release, too. Code importing these modules needs to adapt.


git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7267 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
</feed>
