<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pygments-git.git/pygments/lexer.py, branch py2removal</title>
<subtitle>github.com: pygments/pygments.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/pygments-git.git/'/>
<entry>
<title>Remove unneeded future imports.</title>
<updated>2020-01-05T07:02:50+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2020-01-05T07:02:50+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/pygments-git.git/commit/?id=57ddd1f1f03ba0ce51eeaabfe15aa5da90574784'/>
<id>57ddd1f1f03ba0ce51eeaabfe15aa5da90574784</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unneeded object inheritance.</title>
<updated>2020-01-04T15:18:43+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2020-01-04T15:18:43+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/pygments-git.git/commit/?id=5f4b1d0ffe1274f8632911e0edf183995f787e41'/>
<id>5f4b1d0ffe1274f8632911e0edf183995f787e41</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove Python 2 compatibility</title>
<updated>2020-01-04T15:10:50+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2020-01-04T15:10:50+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/pygments-git.git/commit/?id=58c34950dec138f4e3e52a56031b9a817fb54295'/>
<id>58c34950dec138f4e3e52a56031b9a817fb54295</id>
<content type='text'>
* remove 2/3 shims in pygments.util
* update setup.py metadata
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* remove 2/3 shims in pygments.util
* update setup.py metadata
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixup all headers and some more minor problems.</title>
<updated>2019-05-28T05:00:40+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2019-05-28T05:00:40+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/pygments-git.git/commit/?id=597020d4ce90505dad8b850eadafd20f06bf1dc9'/>
<id>597020d4ce90505dad8b850eadafd20f06bf1dc9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Never pop all states from the stack, even if a lexer wants to.</title>
<updated>2019-05-06T05:42:02+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2019-05-06T05:42:02+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/pygments-git.git/commit/?id=eeb5ac2f16f63ad14509835961faf93fac19a318'/>
<id>eeb5ac2f16f63ad14509835961faf93fac19a318</id>
<content type='text'>
fixes #1506
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes #1506
</pre>
</div>
</content>
</entry>
<entry>
<title>Copyright update.</title>
<updated>2017-01-22T17:38:11+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2017-01-22T17:38:11+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/pygments-git.git/commit/?id=00126a1401eefcf0280384d9bf59783e81db41ed'/>
<id>00126a1401eefcf0280384d9bf59783e81db41ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for partials and path segments for Handlebars.</title>
<updated>2016-11-04T23:57:38+00:00</updated>
<author>
<name>Christian Hammond</name>
<email>christian@beanbaginc.com</email>
</author>
<published>2016-11-04T23:57:38+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/pygments-git.git/commit/?id=6ded9db39463372e5205a36bea72d6de516ece69'/>
<id>6ded9db39463372e5205a36bea72d6de516ece69</id>
<content type='text'>
This introduces support for some missing features to the Handlebars lexer:
Partials and path segments. Partials mostly appeared to work before, but the
`&gt;` in `{{&gt; ... }}` would appear as a syntax error, as could other
components of the partial. This change introduces support for:

* Standard partials: `{{&gt; partialName}}`
* Partials with parameters: `{{&gt; partialName varname="value"}}`
* Ddynamic partials: `{{&gt; (partialFunc)}}`
* Ddynamic partials with lookups: `{{&gt; (lookup ../path "partialName")}}`
* Partial blocks: `{{&gt; @partial-block}}`
* Inline partials: `{{#*inline}}..{{/inline}}`

It also introduces support for path segments, which can reference content in
the current context or in a parent context. For instance, `this.name`,
`this/name`, `./name`, `../name`, `this/name`, etc. These are all now tracked
as variables.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This introduces support for some missing features to the Handlebars lexer:
Partials and path segments. Partials mostly appeared to work before, but the
`&gt;` in `{{&gt; ... }}` would appear as a syntax error, as could other
components of the partial. This change introduces support for:

* Standard partials: `{{&gt; partialName}}`
* Partials with parameters: `{{&gt; partialName varname="value"}}`
* Ddynamic partials: `{{&gt; (partialFunc)}}`
* Ddynamic partials with lookups: `{{&gt; (lookup ../path "partialName")}}`
* Partial blocks: `{{&gt; @partial-block}}`
* Inline partials: `{{#*inline}}..{{/inline}}`

It also introduces support for path segments, which can reference content in
the current context or in a parent context. For instance, `this.name`,
`this/name`, `./name`, `../name`, `this/name`, etc. These are all now tracked
as variables.
</pre>
</div>
</content>
</entry>
</feed>
