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

Skip to content

Commit 3e18c47

Browse files
committed
syncing for 82
svn path=/trunk/matplotlib/; revision=1467
1 parent ad809df commit 3e18c47

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

API_CHANGES

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
API Changes in matplotlib-0.82
22

3+
= toolbar import change in GTKAgg, GTKCairo and WXAgg =
4+
35
Added subplot config tool to GTK* backends -- note you must now
46
import the NavigationToolbar2 from your backend of choice rather
57
than from backend_gtk because it needs to know about the backend
68
specific canvas -- see examples/embedding_in_gtk2.py. Ditto for wx
79
backend -- see examples/embedding_in_wxagg.py
810

9-
API CHANGES in matplotlib-0.81.1
11+
12+
= hist bin change =
1013

1114
Sean Richards notes there was a problem in the way we created the
1215
binning for histogram, which made the last bin underrepresented.

examples/backend_driver.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
'text_handles.py',
6363
'text_rotation.py',
6464
'text_themes.py',
65+
'tex_demo.py',
6566
'two_scales.py',
6667
'unicode_demo.py',
6768
'vline_demo.py',

examples/fill_demo2.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from pylab import subplot, sin, pi, arange, setp, show
2+
ax = subplot(111)
3+
t = arange(0.0,3.0,0.01)
4+
s = sin(2*pi*t)
5+
c = sin(4*pi*t)
6+
7+
p = ax.fill(t,s,'b',t,c,'g')
8+
setp(p, alpha=0.2)
9+
ax.vlines( [1.5], -1.0, 1.0 )
10+
show()

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"""
143143
from __future__ import generators
144144

145-
__version__ = '0.81.1'
145+
__version__ = '0.82'
146146
__revision__ = '$Revision$'
147147
__date__ = '$Date$'
148148

0 commit comments

Comments
 (0)