<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pygments.git, branch perllexer</title>
<subtitle>bitbucket.org: Obsolete (use python-packages/pygments-git)
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/'/>
<entry>
<title>Closing branch perllexer.</title>
<updated>2017-01-22T18:33:52+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2017-01-22T18:33:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=01f0358471395998f39165ef0d2f2665133d76b1'/>
<id>01f0358471395998f39165ef0d2f2665133d76b1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Perl5 lexer for namespaces/modules. Also see https://github.com/EntropyOrg/p5-Devel-IPerl/issues/25</title>
<updated>2017-01-01T11:59:11+00:00</updated>
<author>
<name>Zhenyi Zhou</name>
<email>zhouzhen1@gmail.com</email>
</author>
<published>2017-01-01T11:59:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=0fa23bf835caf6dc01ddb7fde63e01113a7b10af'/>
<id>0fa23bf835caf6dc01ddb7fde63e01113a7b10af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merged in josiahschwab/pygments-main/fortran-exponent-letter (pull request #656)</title>
<updated>2016-08-19T06:30:25+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2016-08-19T06:30:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=56e75b33d66738b072f9f5525f3af4a8ba863d8b'/>
<id>56e75b33d66738b072f9f5525f3af4a8ba863d8b</id>
<content type='text'>
Fortran exponent letter
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fortran exponent letter
</pre>
</div>
</content>
</entry>
<entry>
<title>Add exponent-letter D to Fortran lexer</title>
<updated>2016-08-19T01:44:44+00:00</updated>
<author>
<name>Josiah Schwab</name>
<email>jschwab@gmail.com</email>
</author>
<published>2016-08-19T01:44:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=e9a803bbaf3fee217f64f7bf32a18278770dfe36'/>
<id>e9a803bbaf3fee217f64f7bf32a18278770dfe36</id>
<content type='text'>
In the Fortran specification, the exponent-letter within a
signed-real-literal-constant is E or D.  Therefore, both 3.14159e0 and
3.14159d0 should be classified as a Number.Float.

The current behavior is

&gt;&gt;&gt; print(highlight("3.14159d0", FortranLexer(), HtmlFormatter()))
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="mf"&gt;3.14159&lt;/span&gt;&lt;span class="n"&gt;d0&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;

where the only the significand is classified as a Number.Float while
the exponent-letter and exponent are classified as Name.Variable.

After this patch the behavior is

&gt;&gt;&gt; print(highlight("3.14159d0", FortranLexer(), HtmlFormatter()))
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="mf"&gt;3.14159d0&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;

which is the expected behavior.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In the Fortran specification, the exponent-letter within a
signed-real-literal-constant is E or D.  Therefore, both 3.14159e0 and
3.14159d0 should be classified as a Number.Float.

The current behavior is

&gt;&gt;&gt; print(highlight("3.14159d0", FortranLexer(), HtmlFormatter()))
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="mf"&gt;3.14159&lt;/span&gt;&lt;span class="n"&gt;d0&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;

where the only the significand is classified as a Number.Float while
the exponent-letter and exponent are classified as Name.Variable.

After this patch the behavior is

&gt;&gt;&gt; print(highlight("3.14159d0", FortranLexer(), HtmlFormatter()))
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="mf"&gt;3.14159d0&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;

which is the expected behavior.
</pre>
</div>
</content>
</entry>
<entry>
<title>Created new branch fortran-exponent-letter</title>
<updated>2016-08-19T01:23:49+00:00</updated>
<author>
<name>Josiah Schwab</name>
<email>jschwab@gmail.com</email>
</author>
<published>2016-08-19T01:23:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=c52cf511663b252a566351fdcf5fb9bc343e4a24'/>
<id>c52cf511663b252a566351fdcf5fb9bc343e4a24</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merged in kneufeld/pygments-main (pull request #605)</title>
<updated>2016-06-16T17:10:37+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2016-06-16T17:10:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=421263e90981c08119640d280af96550e9f5fd05'/>
<id>421263e90981c08119640d280af96550e9f5fd05</id>
<content type='text'>
text files should parse properly
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
text files should parse properly
</pre>
</div>
</content>
</entry>
<entry>
<title>Only += is an operator</title>
<updated>2016-06-16T07:07:08+00:00</updated>
<author>
<name>Camil Staps</name>
<email>info@camilstaps.nl</email>
</author>
<published>2016-06-16T07:07:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=3e9eb40c753b808e4f23f27764bfe49965e04df5'/>
<id>3e9eb40c753b808e4f23f27764bfe49965e04df5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes #1246</title>
<updated>2016-06-16T05:07:56+00:00</updated>
<author>
<name>Camil Staps</name>
<email>info@camilstaps.nl</email>
</author>
<published>2016-06-16T05:07:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=731812792ee10e1f9f6494ddd4125253e96d8d43'/>
<id>731812792ee10e1f9f6494ddd4125253e96d8d43</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TextLexer has no priority and comes late in alphabet so therefore</title>
<updated>2016-06-04T00:08:15+00:00</updated>
<author>
<name>Kurt Neufeld</name>
<email>kneufeld@burgundywall.com</email>
</author>
<published>2016-06-04T00:08:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=2b59bbffe13cf51b8ddf3c3492a0c181783065b3'/>
<id>2b59bbffe13cf51b8ddf3c3492a0c181783065b3</id>
<content type='text'>
it will never be selected as default for *.txt files
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
it will never be selected as default for *.txt files
</pre>
</div>
</content>
</entry>
<entry>
<title>ResourceLexer.analyse_text must return float or None</title>
<updated>2016-06-04T00:06:40+00:00</updated>
<author>
<name>Kurt Neufeld</name>
<email>kneufeld@burgundywall.com</email>
</author>
<published>2016-06-04T00:06:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=6fb29e92d2ad882bbcb9141e5b59f02682b75ca5'/>
<id>6fb29e92d2ad882bbcb9141e5b59f02682b75ca5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
