<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pygments-git.git/scripts, branch 2.0.2</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>debug_lexer: make it work for ExtendedRegexLexers by always using a context object</title>
<updated>2014-11-06T09:42:28+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2014-11-06T09:42: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=884ae3ea3974ca695945a1222452617573ee6972'/>
<id>884ae3ea3974ca695945a1222452617573ee6972</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove obsolete script to find "codetags".</title>
<updated>2014-11-06T08:35:54+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2014-11-06T08:35:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=161538b1a5d230f444a719dffcbf8e4a399bfbdf'/>
<id>161538b1a5d230f444a719dffcbf8e4a399bfbdf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Include 'unlexer' as a common misspelling.</title>
<updated>2014-10-10T14:27:39+00:00</updated>
<author>
<name>Tim Hatch</name>
<email>tim@timhatch.com</email>
</author>
<published>2014-10-10T14:27:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=8fe9247738286738fa0e77a33f9233751b965cc6'/>
<id>8fe9247738286738fa0e77a33f9233751b965cc6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>debug_lexer: fix missing import and wrong API usage</title>
<updated>2014-10-07T14:10:21+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2014-10-07T14:10: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=a73313d8e761bc53a7b5d2ec3c6527b9b0e22a66'/>
<id>a73313d8e761bc53a7b5d2ec3c6527b9b0e22a66</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>debug_lexer: remove debug print; allow reading from stdin with filename "-"</title>
<updated>2014-10-07T13:10:22+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2014-10-07T13:10:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=3aa57e36a06be779b11d567a8db28af17a2e7273'/>
<id>3aa57e36a06be779b11d567a8db28af17a2e7273</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Closes #980: fix DeprecationWarnings (mostly due to files closed by __del__) on Py3.</title>
<updated>2014-10-07T12:10:28+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2014-10-07T12:10: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=9a1feeb4efd10181760f380d5810156b1d0133b4'/>
<id>9a1feeb4efd10181760f380d5810156b1d0133b4</id>
<content type='text'>
Also fix a bunch of other uses of open() to use the with statement.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also fix a bunch of other uses of open() to use the with statement.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change how debug_lexer.py finds its lexers.</title>
<updated>2014-10-07T03:38:15+00:00</updated>
<author>
<name>Tim Hatch</name>
<email>tim@timhatch.com</email>
</author>
<published>2014-10-07T03:38: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=d83d4a28da8c0cc3830ca31b5013ed8192cf8a46'/>
<id>d83d4a28da8c0cc3830ca31b5013ed8192cf8a46</id>
<content type='text'>
Previously it was way too easy to end up with None as the lexer, which later
fails.  This considers aliases, same as the -l argument to pygmentize does.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously it was way too easy to end up with None as the lexer, which later
fails.  This considers aliases, same as the -l argument to pygmentize does.
</pre>
</div>
</content>
</entry>
<entry>
<title>move module names from _XXXbuiltins to _XXX_builtins to be consistent</title>
<updated>2014-10-04T20:35:59+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2014-10-04T20:35:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=64fcd7618c5bbae197f66dbe3a1257f062e6b459'/>
<id>64fcd7618c5bbae197f66dbe3a1257f062e6b459</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>check_sources: decode when reading file, remove obsolete checks</title>
<updated>2014-10-04T20:16:26+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2014-10-04T20:16:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=1c2a745a4b46919feb82a691b3c3174e2dc94151'/>
<id>1c2a745a4b46919feb82a691b3c3174e2dc94151</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>check_sources: allow 110 line length, skip examplefiles directory</title>
<updated>2014-10-04T20:01:53+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2014-10-04T20:01:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=a7d9a001b9b01dd6776e815dd87a47c748242788'/>
<id>a7d9a001b9b01dd6776e815dd87a47c748242788</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
