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

Skip to content

Commit 6c96389

Browse files
committed
syncing to 0.65.1
svn path=/trunk/matplotlib/; revision=808
1 parent 67b109c commit 6c96389

3 files changed

Lines changed: 18 additions & 18 deletions

File tree

LICENSE/LICENSE

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LICENSE AGREEMENT FOR MATPLOTLIB 0.65
1+
LICENSE AGREEMENT FOR MATPLOTLIB 0.65.1
22
--------------------------------------
33

44
1. This LICENSE AGREEMENT is between the John D. Hunter ("JDH"), and the
@@ -9,30 +9,30 @@ documentation.
99
2. Subject to the terms and conditions of this License Agreement, JDH
1010
hereby grants Licensee a nonexclusive, royalty-free, world-wide license
1111
to reproduce, analyze, test, perform and/or display publicly, prepare
12-
derivative works, distribute, and otherwise use matplotlib 0.65
12+
derivative works, distribute, and otherwise use matplotlib 0.65.1
1313
alone or in any derivative version, provided, however, that JDH's
1414
License Agreement and JDH's notice of copyright, i.e., "Copyright (c)
1515
2002-2004 John D. Hunter; All Rights Reserved" are retained in
16-
matplotlib 0.65 alone or in any derivative version prepared by
16+
matplotlib 0.65.1 alone or in any derivative version prepared by
1717
Licensee.
1818

1919
3. In the event Licensee prepares a derivative work that is based on or
20-
incorporates matplotlib 0.65 or any part thereof, and wants to
20+
incorporates matplotlib 0.65.1 or any part thereof, and wants to
2121
make the derivative work available to others as provided herein, then
2222
Licensee hereby agrees to include in any such work a brief summary of
23-
the changes made to matplotlib 0.65.
23+
the changes made to matplotlib 0.65.1.
2424

25-
4. JDH is making matplotlib 0.65 available to Licensee on an "AS
25+
4. JDH is making matplotlib 0.65.1 available to Licensee on an "AS
2626
IS" basis. JDH MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
2727
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, JDH MAKES NO AND
2828
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
29-
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.65
29+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.65.1
3030
WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
3131

3232
5. JDH SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF MATPLOTLIB
33-
0.65 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
33+
0.65.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
3434
LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
35-
MATPLOTLIB 0.65, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
35+
MATPLOTLIB 0.65.1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
3636
THE POSSIBILITY THEREOF.
3737

3838
6. This License Agreement will automatically terminate upon a material
@@ -44,6 +44,6 @@ Licensee. This License Agreement does not grant permission to use JDH
4444
trademarks or trade name in a trademark sense to endorse or promote
4545
products or services of Licensee, or any third party.
4646

47-
8. By copying, installing or otherwise using matplotlib 0.65,
47+
8. By copying, installing or otherwise using matplotlib 0.65.1,
4848
Licensee agrees to be bound by the terms and conditions of this License
4949
Agreement.

MANIFEST

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ examples/dynamic_image_wxagg.py
282282
examples/embedding_in_gtk.py
283283
examples/embedding_in_gtk2.py
284284
examples/embedding_in_tk.py
285+
examples/embedding_in_tk2.py
285286
examples/embedding_in_wx.py
286287
examples/embedding_in_wx2.py
287288
examples/embedding_in_wx3.py
@@ -504,7 +505,6 @@ lib/matplotlib/_transforms.py
504505
lib/matplotlib/afm.py
505506
lib/matplotlib/artist.py
506507
lib/matplotlib/axes.py
507-
lib/matplotlib/axes.py.orig
508508
lib/matplotlib/axis.py
509509
lib/matplotlib/backend_bases.py
510510
lib/matplotlib/cbook.py
@@ -517,11 +517,9 @@ lib/matplotlib/finance.py
517517
lib/matplotlib/font_manager.py
518518
lib/matplotlib/image.py
519519
lib/matplotlib/legend.py
520-
lib/matplotlib/legend.py.orig
521520
lib/matplotlib/lines.py
522521
lib/matplotlib/mathtext.py
523522
lib/matplotlib/matlab.py
524-
lib/matplotlib/matlab.py.orig
525523
lib/matplotlib/mlab.py
526524
lib/matplotlib/na_imports.py
527525
lib/matplotlib/nc_imports.py

lib/matplotlib/backends/backend_tkagg.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -282,16 +282,18 @@ def resize(self, event):
282282
self.toolbar.configure(width=width) # , height=height)
283283

284284
def show(self):
285+
_focus = windowing.FocusManager()
286+
if not self._shown:
287+
self.window.deiconify()
288+
# anim.py requires this
289+
if sys.platform=='win32' : self.window.update()
290+
else: self.canvas.draw()
291+
self._shown = True
285292
def destroy(*args):
286293
self.window = None
287294
Gcf.destroy(self._num)
288295
if not self._shown: self.window.bind("<Destroy>", destroy)
289296

290-
_focus = windowing.FocusManager()
291-
if not self._shown: self.window.deiconify()
292-
else: self.canvas.draw()
293-
self._shown = True
294-
295297

296298
def destroy(self, *args):
297299
if Gcf.get_num_fig_managers()==0 and not matplotlib.is_interactive():

0 commit comments

Comments
 (0)