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
(5) |
2
(4) |
3
(2) |
4
(4) |
5
(2) |
6
(32) |
7
(34) |
8
(19) |
9
(6) |
10
(7) |
11
(14) |
12
(1) |
13
(2) |
14
(8) |
15
(5) |
16
(5) |
17
(8) |
18
(8) |
19
(6) |
20
(9) |
21
(12) |
22
(1) |
23
(2) |
24
(8) |
25
(2) |
26
(1) |
27
(2) |
28
(3) |
29
|
30
(2) |
|
|
|
Revision: 7827 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7827&view=rev Author: efiring Date: 2009年09月25日 23:56:14 +0000 (2009年9月25日) Log Message: ----------- Fix bug in quiver handling of masked U, V Modified Paths: -------------- branches/v0_99_maint/lib/matplotlib/quiver.py Modified: branches/v0_99_maint/lib/matplotlib/quiver.py =================================================================== --- branches/v0_99_maint/lib/matplotlib/quiver.py 2009年09月25日 18:54:43 UTC (rev 7826) +++ branches/v0_99_maint/lib/matplotlib/quiver.py 2009年09月25日 23:56:14 UTC (rev 7827) @@ -516,6 +516,11 @@ xy = (X+Y*1j) * np.exp(1j*theta)*self.width xy = xy[:,:,np.newaxis] XY = np.concatenate((xy.real, xy.imag), axis=2) + if self.Umask is not ma.nomask: + XY = ma.array(XY) + XY[self.Umask] = ma.masked + # This might be handled more efficiently with nans, given + # that nans will end up in the paths anyway. return XY @@ -573,10 +578,7 @@ tooshort = np.repeat(tooshort, 8, 1) np.putmask(X, tooshort, X1) np.putmask(Y, tooshort, Y1) - if self.Umask is not ma.nomask: - mask = np.repeat(self.Umask[:,np.newaxis], 8, 1) - X = ma.array(X, mask=mask, copy=False) - Y = ma.array(Y, mask=mask, copy=False) + # Mask handling is deferred to the caller, _make_verts. return X, Y quiver_doc = _quiver_doc This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 7826 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7826&view=rev Author: fer_perez Date: 2009年09月25日 18:54:43 +0000 (2009年9月25日) Log Message: ----------- Keep apigen in sync with upstream (this is from the nipy project) Modified Paths: -------------- trunk/sampledoc_tut/sphinxext/apigen.py Modified: trunk/sampledoc_tut/sphinxext/apigen.py =================================================================== --- trunk/sampledoc_tut/sphinxext/apigen.py 2009年09月24日 21:16:07 UTC (rev 7825) +++ trunk/sampledoc_tut/sphinxext/apigen.py 2009年09月25日 18:54:43 UTC (rev 7826) @@ -251,6 +251,7 @@ ad += ' :members:\n' \ ' :undoc-members:\n' \ ' :show-inheritance:\n' \ + ' :inherited-members:\n' \ '\n' \ ' .. automethod:: __init__\n' if multi_fx: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.