Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0c5cb9b

Browse files
committed
prepping for 0.70
svn path=/trunk/matplotlib/; revision=833
1 parent c68a3eb commit 0c5cb9b

6 files changed

Lines changed: 10 additions & 6 deletions

File tree

TODO

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,3 +617,6 @@ ZeroDivisionError: SeparableTransformation::eval_scalars yin interval is zero; c
617617
-- CLOSED reverse pie rotation
618618

619619
-- check keypress event handling on tooggle_images.
620+
621+
-- imshow tick labeling buck with aspect preserve
622+

examples/embedding_in_wx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self):
7777

7878
def plot_data(self):
7979
# Use ths line if using a toolbar
80-
a = self.figmgr.add_subplot(111)
80+
a = self.fig.add_subplot(111)
8181

8282
# Or this one if there is no toolbar
8383
#a = Subplot(self.fig, 111)

examples/object_picker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from matplotlib.lines import Line2D, lineStyles, lineMarkers
2020
from matplotlib.transforms import Bbox, lbwh_to_bbox
2121
from matplotlib.patches import draw_bbox
22-
from matplotlib.cbook import is_string_like, True, False
22+
from matplotlib.cbook import is_string_like
2323
from matplotlib.colors import colorConverter
2424

2525
import gtk

examples/simple_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
title('About as simple as it gets, folks')
1313
grid(True)
1414
#axis([0,1,-1,1])
15-
savefig('simple_plot')
15+
#savefig('simple_plot')
1616

1717
show()

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
Most of the other commands are from the Numeric, MLab and FFT, with
141141
the exception of those in mlab.py provided by matplotlib.
142142
"""
143-
__version__ = '0.65.1'
143+
__version__ = '0.70'
144144
__revision__ = '$Revision$'
145145
__date__ = '$Date$'
146146

lib/matplotlib/pylab.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The following plotting commands are provided; some of these do not
55
exist in matlab(TM) but have proven themselves to be useful nonetheless.
6-
The majority of them, however, are matlab(TM) commands
6+
The majority of them, however, have matlab analogs
77
88
_Plotting commands
99
@@ -49,6 +49,7 @@
4949
pcolor - make a pseudocolor plot
5050
pie - make a pie chart
5151
plot - make a line plot
52+
pie - pie charts
5253
polar - make a polar plot on a PolarAxes
5354
psd - make a plot of power spectral density
5455
rc - control the default params
@@ -370,7 +371,7 @@ def get_plot_commands(): return ( 'axes', 'axis', 'bar', 'cla', 'clf',
370371
'imshow', 'legend', 'loglog', 'rc', 'pcolor', 'plot', 'psd',
371372
'savefig', 'scatter', 'set', 'semilogx', 'semilogy', 'show',
372373
'specgram', 'stem', 'subplot', 'table', 'text', 'title', 'xlabel',
373-
'ylabel', 'polar')
374+
'ylabel', 'pie', 'polar')
374375

375376
def raise_msg_to_str(msg):
376377
"""msg is a return arg from a raise. Join with new lines"""

0 commit comments

Comments
 (0)