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
(1) |
2
(5) |
3
(14) |
4
(7) |
5
|
6
(9) |
7
(2) |
8
|
9
|
10
(1) |
11
(1) |
12
(10) |
13
(3) |
14
(2) |
15
(3) |
16
(2) |
17
|
18
(3) |
19
|
20
(1) |
21
(3) |
22
|
23
(4) |
24
(3) |
25
|
26
(1) |
27
|
28
|
29
|
30
(7) |
|
|
|
|
|
Revision: 7951 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7951&view=rev Author: leejjoon Date: 2009年11月11日 23:59:23 +0000 (2009年11月11日) Log Message: ----------- drawing images respect zorder among images even for noncomposite backend Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2009年11月10日 21:03:51 UTC (rev 7950) +++ trunk/matplotlib/lib/matplotlib/axes.py 2009年11月11日 23:59:23 UTC (rev 7951) @@ -1727,9 +1727,12 @@ # make a composite image blending alpha # list of (mimage.Image, ox, oy) + zorder_images = [(im.zorder, im) for im in self.images \ + if im.get_visible()] + zorder_images.sort() + mag = renderer.get_image_magnification() - ims = [(im.make_image(mag),0,0) - for im in self.images if im.get_visible()] + ims = [(im.make_image(mag),0,0) for z,im in zorder_images] l, b, r, t = self.bbox.extents This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.