<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pygments-git.git, branch examplefiles</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>Move test_examplefiles to new tests/lexers scheme.</title>
<updated>2021-01-18T21:08:36+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2021-01-18T20:24:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=2a3d3a7d5b9c60dedf6638d876161d9563faebcf'/>
<id>2a3d3a7d5b9c60dedf6638d876161d9563faebcf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace tests that assert on token output with auto-updatable samples (#1649)</title>
<updated>2021-01-18T19:39:02+00:00</updated>
<author>
<name>Oleh Prypin</name>
<email>oleh@pryp.in</email>
</author>
<published>2021-01-18T19:39:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=f0445be718da83541ea3401aad882f3937147263'/>
<id>f0445be718da83541ea3401aad882f3937147263</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Matlab class properties (#1466)</title>
<updated>2021-01-18T17:01:21+00:00</updated>
<author>
<name>Dan</name>
<email>drmoose@users.noreply.github.com</email>
</author>
<published>2021-01-18T17:01:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=423c44a451db7e5f63147b1c1519661d745fc43a'/>
<id>423c44a451db7e5f63147b1c1519661d745fc43a</id>
<content type='text'>
* WIP: Add failing test for a matlab class with properties.

* Add some missing keywords

* Add leading \s* matchers to things above the command form regex, as it tends to swallow keywords otherwise.

* Add support for the special 'properties' block syntax.

* Fix apparent infinite loop when given garbage input.

* Use includes to clean up some of my copypasta.

* Fix negative lookahead when there's more than one space between operators.

* Use Whitespace not Text for spaces; combine adjacent whitespace.

* Add support for declarative property constraints.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* WIP: Add failing test for a matlab class with properties.

* Add some missing keywords

* Add leading \s* matchers to things above the command form regex, as it tends to swallow keywords otherwise.

* Add support for the special 'properties' block syntax.

* Fix apparent infinite loop when given garbage input.

* Use includes to clean up some of my copypasta.

* Fix negative lookahead when there's more than one space between operators.

* Use Whitespace not Text for spaces; combine adjacent whitespace.

* Add support for declarative property constraints.</pre>
</div>
</content>
</entry>
<entry>
<title>update the map</title>
<updated>2021-01-18T15:50:38+00:00</updated>
<author>
<name>Mestery</name>
<email>48163546+Mesteery@users.noreply.github.com</email>
</author>
<published>2021-01-17T19:21:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=9647d2ae506b8e05ebabe9243df707bac901a6a3'/>
<id>9647d2ae506b8e05ebabe9243df707bac901a6a3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add markdown to aliases</title>
<updated>2021-01-18T15:50:38+00:00</updated>
<author>
<name>Mestery</name>
<email>48163546+Mesteery@users.noreply.github.com</email>
</author>
<published>2021-01-17T13:30:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=604382c59e0b08fe2d7dffd10acd839c74296896'/>
<id>604382c59e0b08fe2d7dffd10acd839c74296896</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Run pyupgrade across codebase to modernize syntax and patterns (#1622)</title>
<updated>2021-01-17T15:44:58+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2021-01-17T15:44:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=debda34e2d4f28d6d369cdafdcba4791702f63fc'/>
<id>debda34e2d4f28d6d369cdafdcba4791702f63fc</id>
<content type='text'>
pyupgrade is a tool to automatically upgrade syntax for newer versions
of the Python language.

The project has been Python 3 only since
35544e2fc6eed0ce4a27ec7285aac71ff0ddc473, allowing for several cleanups:

- Remove unnecessary "-*- coding: utf-8 -*-" cookie. Python 3 reads all
  source files as utf-8 by default.

- Replace IOError/EnvironmentError with OSError. Python 3 unified these
  exceptions. The old names are aliases only.

- Use the Python 3 shorter super() syntax.

- Remove "utf8" argument form encode/decode. In Python 3, this value is
  the default.

- Remove "r" from open() calls. In Python 3, this value is the default.

- Remove u prefix from Unicode strings. In Python 3, all strings are
  Unicode.

- Replace io.open() with builtin open(). In Python 3, these functions
  are functionally equivalent.

Co-authored-by: Matthäus G. Chajdas &lt;Anteru@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
pyupgrade is a tool to automatically upgrade syntax for newer versions
of the Python language.

The project has been Python 3 only since
35544e2fc6eed0ce4a27ec7285aac71ff0ddc473, allowing for several cleanups:

- Remove unnecessary "-*- coding: utf-8 -*-" cookie. Python 3 reads all
  source files as utf-8 by default.

- Replace IOError/EnvironmentError with OSError. Python 3 unified these
  exceptions. The old names are aliases only.

- Use the Python 3 shorter super() syntax.

- Remove "utf8" argument form encode/decode. In Python 3, this value is
  the default.

- Remove "r" from open() calls. In Python 3, this value is the default.

- Remove u prefix from Unicode strings. In Python 3, all strings are
  Unicode.

- Replace io.open() with builtin open(). In Python 3, these functions
  are functionally equivalent.

Co-authored-by: Matthäus G. Chajdas &lt;Anteru@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fix for lexing Python raw f-strings with backslashes (#1683)</title>
<updated>2021-01-17T11:54:52+00:00</updated>
<author>
<name>Jeppe Dakin</name>
<email>jeppe_dakin@hotmail.com</email>
</author>
<published>2021-01-17T11:54:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=19d2096185de3282345eab1da611e56a26bcaec2'/>
<id>19d2096185de3282345eab1da611e56a26bcaec2</id>
<content type='text'>
* introduce and apply rfstringescape

* add unit test for raw f-strings

* add further tests

* fix comment</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* introduce and apply rfstringescape

* add unit test for raw f-strings

* add further tests

* fix comment</pre>
</div>
</content>
</entry>
<entry>
<title>Move setup.py to a declarative setup.cfg (#1621)</title>
<updated>2021-01-17T11:49:44+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2021-01-17T11:49:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=7f48240569973617d7c7e8ece12087eb6149ad23'/>
<id>7f48240569973617d7c7e8ece12087eb6149ad23</id>
<content type='text'>
Docs: https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html

Removes mixing code with configuration. No need to execute custom code
at the build step. The declarative configuration is also more friendly
to scripting.

Co-authored-by: Matthäus G. Chajdas &lt;Anteru@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Docs: https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html

Removes mixing code with configuration. No need to execute custom code
at the build step. The declarative configuration is also more friendly
to scripting.

Co-authored-by: Matthäus G. Chajdas &lt;Anteru@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>update changelog</title>
<updated>2021-01-17T11:48:43+00:00</updated>
<author>
<name>Mestery</name>
<email>48163546+Mesteery@users.noreply.github.com</email>
</author>
<published>2021-01-17T10:42:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=6e64b3963aaa5c5f9600e12fe4ba5545494d38c7'/>
<id>6e64b3963aaa5c5f9600e12fe4ba5545494d38c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix escape in TypeScript templates literals</title>
<updated>2021-01-17T11:48:43+00:00</updated>
<author>
<name>Mestery</name>
<email>48163546+Mesteery@users.noreply.github.com</email>
</author>
<published>2021-01-17T10:40:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=927b01e9a54d6a1cc1f24bd0559fa0100e866fc2'/>
<id>927b01e9a54d6a1cc1f24bd0559fa0100e866fc2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
