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
(6) |
2
(17) |
3
(11) |
4
(12) |
5
(16) |
6
(6) |
7
(5) |
8
(8) |
9
(24) |
10
(15) |
11
(12) |
12
(22) |
13
(30) |
14
(16) |
15
(6) |
16
(15) |
17
(20) |
18
(4) |
19
(11) |
20
(16) |
21
(2) |
22
(17) |
23
(16) |
24
(18) |
25
(4) |
26
(9) |
27
(12) |
28
(2) |
29
|
30
(4) |
|
|
|
|
|
Revision: 5697 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5697&view=rev Author: jdh2358 Date: 2008年06月28日 06:50:45 -0700 (2008年6月28日) Log Message: ----------- reverting text with dash fixes; see post on mailing list Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/text.py Modified: trunk/matplotlib/lib/matplotlib/text.py =================================================================== --- trunk/matplotlib/lib/matplotlib/text.py 2008年06月28日 01:10:58 UTC (rev 5696) +++ trunk/matplotlib/lib/matplotlib/text.py 2008年06月28日 13:50:45 UTC (rev 5697) @@ -745,8 +745,8 @@ def get_position(self): "Return x, y as tuple" - x = float(self.convert_xunits(self._x)) - y = float(self.convert_yunits(self._y)) + x = float(self.convert_xunits(self._dashx)) + y = float(self.convert_yunits(self._dashy)) return x, y def get_prop_tup(self): @@ -939,8 +939,7 @@ ACCEPTS: float """ - self._x = float(x) - self._dashx = self._x + self._dashx = float(x) def set_y(self, y): """ @@ -948,8 +947,7 @@ ACCEPTS: float """ - self._y = float(y) - self._dashy = self._y + self._dashy = float(y) def set_transform(self, t): """ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 5696 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5696&view=rev Author: mmetz_bn Date: 2008年06月27日 18:10:58 -0700 (2008年6月27日) Log Message: ----------- Fixed tick positioning bug Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/text.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008年06月27日 18:54:51 UTC (rev 5695) +++ trunk/matplotlib/CHANGELOG 2008年06月28日 01:10:58 UTC (rev 5696) @@ -1,3 +1,5 @@ +2008年06月27日 Fixed tick positioning bug - MM + 2008年06月27日 Fix dashed text bug where text was at the wrong end of the dash - MGD Modified: trunk/matplotlib/lib/matplotlib/text.py =================================================================== --- trunk/matplotlib/lib/matplotlib/text.py 2008年06月27日 18:54:51 UTC (rev 5695) +++ trunk/matplotlib/lib/matplotlib/text.py 2008年06月28日 01:10:58 UTC (rev 5696) @@ -939,7 +939,8 @@ ACCEPTS: float """ - self._dashx = float(x) + self._x = float(x) + self._dashx = self._x def set_y(self, y): """ @@ -947,7 +948,8 @@ ACCEPTS: float """ - self._dashy = float(y) + self._y = float(y) + self._dashy = self._y def set_transform(self, t): """ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.