Skip to content

Commit 2758ba0

Browse files
committed
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 ........ svn path=/trunk/matplotlib/; revision=5102
1 parent d0ae284 commit 2758ba0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/matplotlib/mlab.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2261,7 +2261,7 @@ def mybool(x):
22612261
if x=='True': return True
22622262
elif x=='False': return False
22632263
else: raise ValueError('invalid bool')
2264-
2264+
22652265
dateparser = dateutil.parser.parse
22662266
mydateparser = with_default_value(dateparser, datetime.date(1,1,1))
22672267
myfloat = with_default_value(float, np.nan)

ttconv/truetype.h

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* Michael Droettboom
55
*/
66

7+
#include <stdio.h>
8+
79
/*
810
** ~ppr/src/include/typetype.h
911
**

0 commit comments

Comments
 (0)