File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +21
-0
lines changed
Original file line number Diff line number Diff line change
1
+ API CHANGES in matplotlib-0.70.2
2
+
3
+ builtin min(), max(), round(), abs(), sum() functions no longer
4
+ overridden upon "from pylab import *"
5
+
1
6
API CHANGES in matplotlib-0.70
2
7
3
8
MplEvent factored into a base class Event and derived classes
4
9
MouseEvent and KeyEvent
5
10
6
11
Removed definct set_measurement in wx toolbar
12
+
7
13
API CHANGES in matplotlib-0.65.1
8
14
9
15
removed add_axes and add_subplot from backend_bases. Use
Original file line number Diff line number Diff line change 1
1
New entries should be added at the top
2
2
3
+ 2005-01-19 Restored builtin names which were overridden (min, max,
4
+ abs, round, and sum) in pylab. This is a potentially significant
5
+ change for those who were relying on an array version of those
6
+ functions that previously overrode builtin function names. - ADS
7
+
3
8
2005-01-18 Added accents to mathtext: \hat, \breve, \grave, \bar,
4
9
\acute, \tilde, \vec, \dot, \ddot. All of them have the same
5
10
syntax, eg to make an overbar you do \bar{o} or to make an o umlaut
Original file line number Diff line number Diff line change 216
216
217
217
import matplotlib
218
218
219
+ # Restore builtins which may have been overridden (typically by mlab).
220
+ # This was discussed here
221
+ # http://sourceforge.net/mailarchive/forum.php?thread_id=6307396&forum_id=33405
222
+ import __builtin__
223
+ min = __builtin__ .min
224
+ max = __builtin__ .max
225
+ sum = __builtin__ .sum
226
+ round = __builtin__ .round
227
+ abs = __builtin__ .abs
228
+
219
229
def colors ():
220
230
"""
221
231
This is a do nothing function to provide you with help on how
You can’t perform that action at this time.
0 commit comments