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
(2) |
3
(4) |
4
(4) |
5
(2) |
6
(2) |
7
(6) |
8
(4) |
9
(1) |
10
(1) |
11
(2) |
12
|
13
(1) |
14
(5) |
15
|
16
(3) |
17
(4) |
18
(8) |
19
(4) |
20
(2) |
21
|
22
|
23
(2) |
24
(2) |
25
(1) |
26
|
27
(3) |
28
(2) |
29
(2) |
30
(1) |
31
(6) |
|
|
|
|
Revision: 6957 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6957&view=rev Author: mdboom Date: 2009年03月05日 13:22:26 +0000 (2009年3月05日) Log Message: ----------- Fix logo-generation script to have rounded polar bar plots. Modified Paths: -------------- trunk/matplotlib/examples/api/logo2.py Modified: trunk/matplotlib/examples/api/logo2.py =================================================================== --- trunk/matplotlib/examples/api/logo2.py 2009年03月05日 04:45:00 UTC (rev 6956) +++ trunk/matplotlib/examples/api/logo2.py 2009年03月05日 13:22:26 UTC (rev 6957) @@ -47,7 +47,7 @@ ha='right', va='center', alpha=1.0, transform=ax.transAxes) def add_polar_bar(): - ax = fig.add_axes([0.025, 0.075, 0.2, 0.85], polar=True) + ax = fig.add_axes([0.025, 0.075, 0.2, 0.85], polar=True, resolution=50) ax.axesPatch.set_alpha(axalpha) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 6956 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6956&view=rev Author: leejjoon Date: 2009年03月05日 04:45:00 +0000 (2009年3月05日) Log Message: ----------- hashing of FontProperties accounts current rcParams Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/font_manager.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2009年03月04日 20:53:29 UTC (rev 6955) +++ trunk/matplotlib/CHANGELOG 2009年03月05日 04:45:00 UTC (rev 6956) @@ -1,3 +1,5 @@ +2009年02月28日 hashing of FontProperties accounts current rcParams - JJL + 2009年02月28日 Prevent double-rendering of shared axis in twinx, twiny - EF 2009年02月26日 Add optional bbox_to_anchor argument for legend class - JJL Modified: trunk/matplotlib/lib/matplotlib/font_manager.py =================================================================== --- trunk/matplotlib/lib/matplotlib/font_manager.py 2009年03月04日 20:53:29 UTC (rev 6955) +++ trunk/matplotlib/lib/matplotlib/font_manager.py 2009年03月05日 04:45:00 UTC (rev 6956) @@ -705,10 +705,9 @@ return parse_fontconfig_pattern(pattern) def __hash__(self): - l = self.__dict__.items() - l.sort() + l = [(k, getattr(self, "get" + k)()) for k in sorted(self.__dict__)] return hash(repr(l)) - + def __str__(self): return self.get_fontconfig_pattern() @@ -1181,7 +1180,7 @@ """ debug = False if prop is None: - return self.defaultFont + prop = FontProperties() if is_string_like(prop): prop = FontProperties(prop) fname = prop.get_file() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.