You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(115) |
Aug
(120) |
Sep
(137) |
Oct
(170) |
Nov
(461) |
Dec
(263) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(120) |
Feb
(74) |
Mar
(35) |
Apr
(74) |
May
(245) |
Jun
(356) |
Jul
(240) |
Aug
(115) |
Sep
(78) |
Oct
(225) |
Nov
(98) |
Dec
(271) |
2009 |
Jan
(132) |
Feb
(84) |
Mar
(74) |
Apr
(56) |
May
(90) |
Jun
(79) |
Jul
(83) |
Aug
(296) |
Sep
(214) |
Oct
(76) |
Nov
(82) |
Dec
(66) |
2010 |
Jan
(46) |
Feb
(58) |
Mar
(51) |
Apr
(77) |
May
(58) |
Jun
(126) |
Jul
(128) |
Aug
(64) |
Sep
(50) |
Oct
(44) |
Nov
(48) |
Dec
(54) |
2011 |
Jan
(68) |
Feb
(52) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
(4) |
3
(2) |
4
(9) |
5
|
6
|
7
|
8
|
9
|
10
|
11
(6) |
12
|
13
|
14
|
15
|
16
(10) |
17
(1) |
18
|
19
(1) |
20
|
21
|
22
(3) |
23
|
24
|
25
(2) |
26
|
27
|
28
(3) |
29
(5) |
30
|
31
|
|
|
|
|
|
|
Revision: 8097 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8097&view=rev Author: mmetz_bn Date: 2010年01月25日 20:31:41 +0000 (2010年1月25日) Log Message: ----------- Fixed a bug in hist with stepfilled and log=True Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2010年01月25日 13:04:22 UTC (rev 8096) +++ trunk/matplotlib/CHANGELOG 2010年01月25日 20:31:41 UTC (rev 8097) @@ -1,3 +1,5 @@ +2010年01月25日 Fixed a bug reported by Olle Engdegard, when using + histograms with stepfilled and log=True - MM 2010年01月16日 Upgraded CXX to 6.1.1 - JDH Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2010年01月25日 13:04:22 UTC (rev 8096) +++ trunk/matplotlib/lib/matplotlib/axes.py 2010年01月25日 20:31:41 UTC (rev 8097) @@ -7216,6 +7216,8 @@ for m in n: y[1:-1:2], y[2::2] = m, m + if log: + y[y<1e-100]=1e-100 if orientation == 'horizontal': x,y = y,x elif orientation != 'vertical': This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8096 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8096&view=rev Author: jswhit Date: 2010年01月25日 13:04:22 +0000 (2010年1月25日) Log Message: ----------- add more informative error message when lat_0 is nonzero for projection='geos' Modified Paths: -------------- trunk/toolkits/basemap/lib/mpl_toolkits/basemap/__init__.py Modified: trunk/toolkits/basemap/lib/mpl_toolkits/basemap/__init__.py =================================================================== --- trunk/toolkits/basemap/lib/mpl_toolkits/basemap/__init__.py 2010年01月22日 23:48:35 UTC (rev 8095) +++ trunk/toolkits/basemap/lib/mpl_toolkits/basemap/__init__.py 2010年01月25日 13:04:22 UTC (rev 8096) @@ -585,6 +585,8 @@ if np.abs(lat_0) < 1.e-2: lat_0 = 1.e-2 projparams['lat_0'] = lat_0 elif projection == 'geos': + if lat_0 is not None and lat_0 != 0: + raise ValueError, 'lat_0 must be zero for Geostationary basemap' if lon_0 is None: raise ValueError, 'must specify lon_0 for Geostationary basemap' if width is not None or height is not None: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.