Skip to content

Commit 885fb29

Browse files
committed
*** empty log message ***
svn path=/trunk/matplotlib/; revision=1742
1 parent 57872ef commit 885fb29

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

TODO

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,4 +718,8 @@ ZeroDivisionError: SeparableTransformation::eval_scalars yin interval is zero; c
718718

719719
-- Martin's zoomhist bug
720720

721-
-- Add shading for patches and patch collections.
721+
-- Add shading for patches and patch collections.
722+
723+
-- tex system call problem
724+
725+
-- tex rendering looks fuzzy (dvipng version or flag problem)

lib/matplotlib/contour.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ def contour(self, *args, **kwargs):
624624
- if linewidths == None, the default width in lines.linewidth in
625625
.matplotlibrc is used
626626
627-
* fmt = '1.3f': a format string for adding a label to each collection.
627+
* fmt = '%1.3f': a format string for adding a label to each collection.
628628
Useful for auto-legending.
629629
630630
"""

matplotlibrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
# - a legal html color name, eg red, blue, darkslategray
2525

2626
#### CONFIGURATION BEGINS HERE
27-
backend : GTKAgg # the default backend
27+
# the default backend; one of GTK GTKAgg GTKCairo FltkAgg QtAgg TkAgg
28+
# Agg Cairo GD GDK Paint PS SVG Template
29+
backend : GTKAgg
2830
numerix : Numeric # Numeric or numarray
2931
interactive : False # see http://matplotlib.sourceforge.net/interactive.html
3032
toolbar : toolbar2 # None | classic | toolbar2

src/ft2font.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,8 @@ FT2Font::get_sfnt(const Py::Tuple & args) {
12591259
key[1] = Py::Int(sfnt.encoding_id);
12601260
key[2] = Py::Int(sfnt.language_id);
12611261
key[3] = Py::Int(sfnt.name_id);
1262-
names[key] = Py::String((char *) sfnt.string, (int) sfnt.string_len);
1262+
names[key] = Py::String((char *) sfnt.string,
1263+
(int) sfnt.string_len);
12631264
}
12641265
return names;
12651266
}

0 commit comments

Comments
 (0)