From: <md...@us...> - 2008-06-27 12:49:37
|
Revision: 5684 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5684&view=rev Author: mdboom Date: 2008-06-27 05:49:34 -0700 (Fri, 27 Jun 2008) Log Message: ----------- Fix mathtext parsing bug. Modified Paths: -------------- branches/v0_91_maint/CHANGELOG branches/v0_91_maint/lib/matplotlib/mathtext.py Modified: branches/v0_91_maint/CHANGELOG =================================================================== --- branches/v0_91_maint/CHANGELOG 2008-06-26 20:15:45 UTC (rev 5683) +++ branches/v0_91_maint/CHANGELOG 2008-06-27 12:49:34 UTC (rev 5684) @@ -1,3 +1,5 @@ +2008-06-26 Fix mathtext bug for expressions like $x_{\leftarrow}$ - MGD + 2008-06-26 Fix direction of horizontal/vertical hatches - MGD =============================================================== Modified: branches/v0_91_maint/lib/matplotlib/mathtext.py =================================================================== --- branches/v0_91_maint/lib/matplotlib/mathtext.py 2008-06-26 20:15:45 UTC (rev 5683) +++ branches/v0_91_maint/lib/matplotlib/mathtext.py 2008-06-27 12:49:34 UTC (rev 5684) @@ -2087,7 +2087,7 @@ start_group + ZeroOrMore( autoDelim - | simple) + ^ simple) + end_group ).setParseAction(self.group).setName("group") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |