Re: [Matplotlib-users] matplotlibrc interpretation under Windows seems buggy

2012-05-24 Thread Benjamin Root
On Thursday, May 24, 2012, Jerzy Karczmarczuk wrote: > Gurus, > > Windows XP, matplotlib 1.1.0. Backend Tk, but the same elsewhere. > > Programme: > > import matplotlib as mpl > import matplotlib.pyplot as plt > mpl.rcParams['lines.linewidth'] = 2 > mpl.rcParams['lines.color'] = 'r' > > x=range(80

[Matplotlib-users] matplotlibrc interpretation under Windows seems buggy

2012-05-24 Thread Jerzy Karczmarczuk
Gurus, Windows XP, matplotlib 1.1.0. Backend Tk, but the same elsewhere. Programme: import matplotlib as mpl import matplotlib.pyplot as plt mpl.rcParams['lines.linewidth'] = 2 mpl.rcParams['lines.color'] = 'r' x=range(800) y=[t for t in x] plt.plot(x,y) plt.show() # ==