Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4810d5b

Browse filesBrowse files
committed
lasty bug
svn path=/trunk/matplotlib/; revision=852
1 parent 9d8dd1e commit 4810d5b
Copy full SHA for 4810d5b

File tree

Expand file treeCollapse file tree

4 files changed

+14
-14
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+14
-14
lines changed

‎LICENSE/LICENSE

Copy file name to clipboard
+10-10Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LICENSE AGREEMENT FOR MATPLOTLIB 0.70
1+
LICENSE AGREEMENT FOR MATPLOTLIB 0.70.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.70
12+
derivative works, distribute, and otherwise use matplotlib 0.70.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.70 alone or in any derivative version prepared by
16+
matplotlib 0.70.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.70 or any part thereof, and wants to
20+
incorporates matplotlib 0.70.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.70.
23+
the changes made to matplotlib 0.70.1.
2424

25-
4. JDH is making matplotlib 0.70 available to Licensee on an "AS
25+
4. JDH is making matplotlib 0.70.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.70
29+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.70.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.70 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
33+
0.70.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
3434
LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
35-
MATPLOTLIB 0.70, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
35+
MATPLOTLIB 0.70.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.70,
47+
8. By copying, installing or otherwise using matplotlib 0.70.1,
4848
Licensee agrees to be bound by the terms and conditions of this License
4949
Agreement.

‎lib/matplotlib/__init__.py

Copy file name to clipboardExpand all lines: lib/matplotlib/__init__.py
+1-1Lines 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.70'
143+
__version__ = '0.70.1'
144144
__revision__ = '$Revision$'
145145
__date__ = '$Date$'
146146

‎lib/matplotlib/backend_bases.py

Copy file name to clipboardExpand all lines: lib/matplotlib/backend_bases.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ def __init__(self, figure):
665665

666666
self._button = None # the button pressed
667667
self._key = None # the key pressed
668-
self._lastx, self.last_y = None, None
668+
self._lastx, self.lasty = None, None
669669

670670
def key_press_event(self, key):
671671
self._key = key

‎unit/transforms_unit.py

Copy file name to clipboardExpand all lines: unit/transforms_unit.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,6 @@ def rand_transform():
268268

269269
import math
270270
polar = FuncXY(POLAR)
271-
assert( closeto_seq( polar.map(-1,math.pi), (1,0)) )
272-
assert( closeto_seq( polar.inverse(1,1), (math.sqrt(2), math.pi/4)))
271+
assert( closeto_seq( polar.map(math.pi,1), (-1,0)) )
272+
assert( closeto_seq( polar.inverse(1,1), ( (math.pi/4), math.sqrt(2))) )
273273
print 'all tests passed'

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.