From: <md...@us...> - 2008-05-01 18:26:57
|
Revision: 5102 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5102&view=rev Author: mdboom Date: 2008-05-01 11:24:54 -0700 (Thu, 01 May 2008) Log Message: ----------- Merged revisions 5091-5101 via svnmerge from https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_91_maint ........ r5095 | mmetz_bn | 2008-04-29 09:21:48 -0400 (Tue, 29 Apr 2008) | 1 line fixed bug in mlab.sqrtm; numpy.linalg.eig behaves different than Numeric did ........ r5101 | mdboom | 2008-05-01 14:20:13 -0400 (Thu, 01 May 2008) | 2 lines Include stdio.h for gcc 4.3 ........ Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/mlab.py trunk/matplotlib/ttconv/truetype.h Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Name: svnmerge-integrated - /branches/v0_91_maint:1-5090 + /branches/v0_91_maint:1-5101 Modified: trunk/matplotlib/lib/matplotlib/mlab.py =================================================================== --- trunk/matplotlib/lib/matplotlib/mlab.py 2008-05-01 18:20:13 UTC (rev 5101) +++ trunk/matplotlib/lib/matplotlib/mlab.py 2008-05-01 18:24:54 UTC (rev 5102) @@ -2261,7 +2261,7 @@ if x=='True': return True elif x=='False': return False else: raise ValueError('invalid bool') - + dateparser = dateutil.parser.parse mydateparser = with_default_value(dateparser, datetime.date(1,1,1)) myfloat = with_default_value(float, np.nan) Modified: trunk/matplotlib/ttconv/truetype.h =================================================================== --- trunk/matplotlib/ttconv/truetype.h 2008-05-01 18:20:13 UTC (rev 5101) +++ trunk/matplotlib/ttconv/truetype.h 2008-05-01 18:24:54 UTC (rev 5102) @@ -4,6 +4,8 @@ * Michael Droettboom */ +#include <stdio.h> + /* ** ~ppr/src/include/typetype.h ** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |