<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pygments-git.git/pygments/lexers/python.py, branch 2.14.0</title>
<subtitle>github.com: pygments/pygments.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/'/>
<entry>
<title>Improve whitespace handling in Python.</title>
<updated>2022-12-11T11:52:23+00:00</updated>
<author>
<name>Matthäus G. Chajdas</name>
<email>dev@anteru.net</email>
</author>
<published>2022-12-11T11:52:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=147b22face65617514ccfa8512c6b097b07cad4c'/>
<id>147b22face65617514ccfa8512c6b097b07cad4c</id>
<content type='text'>
This triggers a new case in the HtmlFormatter, which emits an empty span
at the end of the line for a new line, as those are removed by the
split-by-parts code. This requires separate post-processing.

Doesn't fix all whitespace issues with Python either, but we're done to
360 failing examples with that, from previously &gt;400.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This triggers a new case in the HtmlFormatter, which emits an empty span
at the end of the line for a new line, as those are removed by the
split-by-parts code. This requires separate post-processing.

Doesn't fix all whitespace issues with Python either, but we're done to
360 failing examples with that, from previously &gt;400.
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve whitespace handling in PythonTracebackLexer.</title>
<updated>2022-12-04T15:20:15+00:00</updated>
<author>
<name>Matthäus G. Chajdas</name>
<email>dev@anteru.net</email>
</author>
<published>2022-12-04T15:20:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=cdfa8e0ad46c1f5c3d05276ba7130aeb1bfcde35'/>
<id>cdfa8e0ad46c1f5c3d05276ba7130aeb1bfcde35</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>all: move often-used "line_re" to pygments.lexer</title>
<updated>2022-10-27T09:58:29+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2022-10-27T06:29:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=cffc5df62c258ca39fc7474f7197f2df33ab014f'/>
<id>cffc5df62c258ca39fc7474f7197f2df33ab014f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>all: style fixes</title>
<updated>2022-10-27T09:58:29+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2022-10-27T05:19:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=11dac32db5db1166b8d55dc85bc16d2085936c9a'/>
<id>11dac32db5db1166b8d55dc85bc16d2085936c9a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add `.pyi` file to `python` lexer filenames (#2231)</title>
<updated>2022-09-14T22:12:08+00:00</updated>
<author>
<name>Nikita Sobolev</name>
<email>mail@sobolevn.me</email>
</author>
<published>2022-09-14T22:12:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=6c9ff4f48101734f978bd8ced06674c49d78018e'/>
<id>6c9ff4f48101734f978bd8ced06674c49d78018e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Disable highlighting of some escape codes for python bytes literals (#2204)</title>
<updated>2022-08-14T22:40:46+00:00</updated>
<author>
<name>LaurenceWarne</name>
<email>17688577+LaurenceWarne@users.noreply.github.com</email>
</author>
<published>2022-08-14T22:40:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=78efbf0bd992871e560b3997645f5b2fe29d0f3c'/>
<id>78efbf0bd992871e560b3997645f5b2fe29d0f3c</id>
<content type='text'>
Disable highlighting of unicode escape codes in python bytes literals,
as described in
https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals.
So escape codes of the form "\N{name}", "\uxxxx" and "\Uxxxxxxxx" will
no longer be highlighted within bytes literals.  Add tests for escape
code highlighting in string and bytes literals.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Disable highlighting of unicode escape codes in python bytes literals,
as described in
https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals.
So escape codes of the form "\N{name}", "\uxxxx" and "\Uxxxxxxxx" will
no longer be highlighted within bytes literals.  Add tests for escape
code highlighting in string and bytes literals.</pre>
</div>
</content>
</entry>
<entry>
<title>Highlight python 3.10's EncodingWarning (#2106)</title>
<updated>2022-04-06T06:11:07+00:00</updated>
<author>
<name>Kevin Stock</name>
<email>kevin@kevinstock.org</email>
</author>
<published>2022-04-06T06:11:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=c155bc4e52e313a51a03f9dcafa64b92701a6829'/>
<id>c155bc4e52e313a51a03f9dcafa64b92701a6829</id>
<content type='text'>
EncodingWarning was added in 3.10: https://docs.python.org/3/library/exceptions.html#EncodingWarning</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
EncodingWarning was added in 3.10: https://docs.python.org/3/library/exceptions.html#EncodingWarning</pre>
</div>
</content>
</entry>
<entry>
<title>Rework URL information in lexers.</title>
<updated>2022-03-20T09:29:30+00:00</updated>
<author>
<name>Matthäus G. Chajdas</name>
<email>dev@anteru.net</email>
</author>
<published>2022-03-20T09:29:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=64e8e05307689fe726ce9df2d5907e9c2fb67405'/>
<id>64e8e05307689fe726ce9df2d5907e9c2fb67405</id>
<content type='text'>
This commit adds a new url field to a lexer, which can be used to link
to the language website, instead of relying on having the link in either
languages.rst or the docstring of the lexer. Additionally, it changes the
languages.rst file to auto-generate the list of lexers from the actual
source code, using the provided URL.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit adds a new url field to a lexer, which can be used to link
to the language website, instead of relying on having the link in either
languages.rst or the docstring of the lexer. Additionally, it changes the
languages.rst file to auto-generate the list of lexers from the actual
source code, using the provided URL.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove now redundant re.UNICODE and (?u) (#2058)</title>
<updated>2022-01-31T21:00:40+00:00</updated>
<author>
<name>Jean Abou-Samra</name>
<email>jean@abou-samra.fr</email>
</author>
<published>2022-01-31T21:00:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=c81e97c3c281492ac6fdf4abc841ac5b63f3f303'/>
<id>c81e97c3c281492ac6fdf4abc841ac5b63f3f303</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Happy new year.</title>
<updated>2022-01-25T06:36:28+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2022-01-25T06:36:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=ab4afd821aa41403f7a0b1e714112c40b2ad843b'/>
<id>ab4afd821aa41403f7a0b1e714112c40b2ad843b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
