8000 Merged revisions 7037-7039 via svnmerge from · matplotlib/matplotlib@5b09a7a · GitHub
[go: up one dir, main page]

Skip to content

Commit 5b09a7a

Browse files
committed
Merged revisions 7037-7039 via svnmerge from
https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_98_5_maint ........ r7037 | cmoad | 2009-04-10 21:24:37 -0500 (Fri, 10 Apr 2009) | 1 line added python 2.6 / tcltk 8.5 check ........ r7038 | cmoad | 2009-04-12 21:22:30 -0500 (Sun, 12 Apr 2009) | 1 line minor rev bump ........ r7039 | jdh2358 | 2009-04-12 21:56:11 -0500 (Sun, 12 Apr 2009) | 1 line fixed csv2rec bug referenced in sf bug 2745173 ........ svn path=/trunk/matplotlib/; revision=7040
1 parent 8871ed7 commit 5b09a7a

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
======================================================================
2+
2008-04-12 Release 0.98.5.3 at r7038
3+
14
2009-04-06 The pdf backend now escapes newlines and linefeeds in strings.
25
Fixes sf bug #2708559; thanks to Tiago Pereira for the report.
36

doc/matplotlibrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
# the default backend; one of GTK GTKAgg GTKCairo FltkAgg QtAgg TkAgg
2828
# WX WXAgg Agg Cairo GD GDK Paint PS PDF SVG Template
2929
backend : Agg
30-
numerix : numpy # numpy, Numeric or numarray
3130
#maskedarray : False # True to use external maskedarray module
3231
# instead of numpy.ma; this is a temporary
3332
# setting for testing maskedarray.

lib/matplotlib/mlab.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2552,8 +2552,14 @@ def get_converters(reader):
25522552
fh.seek(0)
25532553
reader = csv.reader(fh, delimiter=delimiter)
25542554
process_skiprows(reader)
2555+
25552556
if needheader:
2556-
skipheader = reader.next()
2557+
while 1:
2558+
# skip past any comments and consume one line of column header
2559+
row = reader.next()
2560+
if len(row) and row[0].startswith(comments):
2561+
continue
2562+
break
25572563

25582564
# iterate over the remaining rows and convert the data to date
25592565
# objects, ints, or floats as approriate

setupext.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -952,11 +952,14 @@ def add_tk_flags(module):
952952
message = None
953953
if sys.platform == 'win32':
954954
major, minor1, minor2, s, tmp = sys.version_info
955-
if major == 2 and minor1 in [3, 4, 5]:
956-
module.include_dirs.extend(['win32_static/include/tcl8.4'])
955+
if major == 2 and minor1 == 6:
956+
module.include_dirs.extend(['win32_static/include/tcl85'])
957+
module.libraries.extend(['tk85', 'tcl85'])
958+
elif major == 2 and minor1 in [3, 4, 5]:
959+
module.include_dirs.extend(['win32_static/include/tcl84'])
957960
module.libraries.extend(['tk84', 'tcl84'])
958961
elif major == 2 and minor1 == 2:
959-
module.include_dirs.extend(['win32_static/include/tcl8.3'])
962+
module.include_dirs.extend(['win32_static/include/tcl83'])
960963
module.libraries.extend(['tk83', 'tcl83'])
961964
else:
962965
raise RuntimeError('No tk/win32 support for this python version yet')

0 commit comments

Comments
 (0)
0