From: <md...@us...> - 2008-01-10 16:42:34
|
Revision: 4856 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4856&view=rev Author: mdboom Date: 2008-01-10 08:42:31 -0800 (Thu, 10 Jan 2008) Log Message: ----------- Merged revisions 4844-4855 via svnmerge from https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_91_maint ........ r4846 | mdboom | 2008-01-10 08:38:37 -0500 (Thu, 10 Jan 2008) | 3 lines Merge Darren's win32 build changes to the maintenance branch (since they'll be handy there also). ........ r4854 | mdboom | 2008-01-10 11:37:18 -0500 (Thu, 10 Jan 2008) | 2 lines Fix display of '[' and ']' in mathtext. ........ r4855 | mdboom | 2008-01-10 11:40:54 -0500 (Thu, 10 Jan 2008) | 2 lines Update changelog. ........ Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/mathtext.py Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Name: svnmerge-integrated - /branches/v0_91_maint:1-4843 + /branches/v0_91_maint:1-4855 Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008-01-10 16:40:54 UTC (rev 4855) +++ trunk/matplotlib/CHANGELOG 2008-01-10 16:42:31 UTC (rev 4856) @@ -4,6 +4,15 @@ 2008-01-10 Use setup.cfg to set the default parameters (tkagg, numpy) when building windows installers - DSD +2008-01-10 Fix bug displaying [ and ] in mathtext - MGD + +2008-01-10 Fix bug when displaying a tick value offset with scientific + notation. (Manifests itself as a warning that the \times + symbol can not be found). - MGD + +2008-01-10 Use setup.cfg to set the default parameters (tkagg, + numpy) when building windows installers - DSD + =============================================================== 2008-01-06 Released 0.91.2 at revision 4802 Modified: trunk/matplotlib/lib/matplotlib/mathtext.py =================================================================== --- trunk/matplotlib/lib/matplotlib/mathtext.py 2008-01-10 16:40:54 UTC (rev 4855) +++ trunk/matplotlib/lib/matplotlib/mathtext.py 2008-01-10 16:42:31 UTC (rev 4856) @@ -2057,7 +2057,7 @@ ).setParseAction(self.customspace).setName('customspace') unicode_range = u"\U00000080-\U0001ffff" - symbol =(Regex(UR"([a-zA-Z0-9 +\-*/<>=:,.;!'@()|%s])|(\\[%%${}\[\]_|])" % unicode_range) + symbol =(Regex(UR"([a-zA-Z0-9 +\-*/<>=:,.;!'@()\[\]|%s])|(\\[%%${}\[\]_|])" % unicode_range) | Combine( bslash + oneOf(tex2uni.keys()) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |