File tree 2 files changed +7
-0
lines changed 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 20
20
2012-11-26 deprecate matplotlib/mpl.py, which was used only in pylab.py and is
21
21
now replaced by the more suitable `import matplotlib as mpl`. - PI
22
22
23
+ 2012-11-25 Make rc_context available via pyplot interface - PI
24
+
23
25
2012-11-16 plt.set_cmap no longer throws errors if there is not already
24
26
an active colorable artist, such as an image, and just sets
25
27
up the colormap to use from that point forward. - PI
Original file line number Diff line number Diff line change 28
28
from matplotlib .image import imread as _imread
29
29
from matplotlib .image import imsave as _imsave
30
30
from matplotlib import rcParams , rcParamsDefault , get_backend
31
+ from matplotlib import rc_context
31
32
from matplotlib .rcsetup import interactive_bk as _interactive_bk
32
33
from matplotlib .artist import getp , get , Artist
33
34
from matplotlib .artist import setp as _setp
@@ -194,6 +195,10 @@ def pause(interval):
194
195
def rc (* args , ** kwargs ):
195
196
matplotlib .rc (* args , ** kwargs )
196
197
198
+ @docstring .copy_dedent (matplotlib .rc_context )
199
+ def rc_context (rc = None , fname = None ):
200
+ matplotlib .rc_context (rc , fname )
201
+
197
202
@docstring .copy_dedent (matplotlib .rcdefaults )
198
203
def rcdefaults ():
199
204
matplotlib .rcdefaults ()
You can’t perform that action at this time.
0 commit comments