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
(2) |
3
(2) |
4
|
5
(2) |
6
(4) |
7
|
8
|
9
|
10
|
11
|
12
|
13
(1) |
14
(2) |
15
(3) |
16
(7) |
17
(1) |
18
(1) |
19
(3) |
20
(16) |
21
(3) |
22
(4) |
23
(2) |
24
|
25
|
26
(6) |
27
(3) |
28
(9) |
29
(2) |
30
(2) |
|
Revision: 8289 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8289&view=rev Author: efiring Date: 2010年04月29日 21:43:53 +0000 (2010年4月29日) Log Message: ----------- Line2D: don't use subslices with markevery Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/lines.py Modified: trunk/matplotlib/lib/matplotlib/lines.py =================================================================== --- trunk/matplotlib/lib/matplotlib/lines.py 2010年04月29日 16:18:09 UTC (rev 8288) +++ trunk/matplotlib/lib/matplotlib/lines.py 2010年04月29日 21:43:53 UTC (rev 8289) @@ -456,7 +456,8 @@ self._subslice = False if (self.axes and len(x) > 100 and self._is_sorted(x) and self.axes.name == 'rectilinear' and - self.axes.get_xscale() == 'linear'): + self.axes.get_xscale() == 'linear' and + self._markevery is None): self._subslice = True if hasattr(self, '_path'): interpolation_steps = self._path._interpolation_steps This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8288 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8288&view=rev Author: mdboom Date: 2010年04月29日 16:18:09 +0000 (2010年4月29日) Log Message: ----------- Fix bug with legends on non-linear scales. Reported by Shrividya Ravi. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/path.py trunk/matplotlib/lib/matplotlib/transforms.py Modified: trunk/matplotlib/lib/matplotlib/path.py =================================================================== --- trunk/matplotlib/lib/matplotlib/path.py 2010年04月28日 20:59:13 UTC (rev 8287) +++ trunk/matplotlib/lib/matplotlib/path.py 2010年04月29日 16:18:09 UTC (rev 8288) @@ -292,9 +292,13 @@ control points appropriately. """ from transforms import Bbox + path = self if transform is not None: transform = transform.frozen() - return Bbox(get_path_extents(self, transform)) + if not transform.is_affine: + path = self.transformed(transform) + transform = None + return Bbox(get_path_extents(path, transform)) def intersects_path(self, other, filled=True): """ @@ -506,8 +510,8 @@ def unit_circle_righthalf(cls): """ (staticmethod) Returns a :class:`Path` of the right half - of a unit circle. The circle is approximated using cubic Bezier - curves. This uses 4 splines around the circle using the approach + of a unit circle. The circle is approximated using cubic Bezier + curves. This uses 4 splines around the circle using the approach presented here: Lancaster, Don. `Approximating a Circle or an Ellipse Using Four @@ -536,7 +540,7 @@ [SQRTHALF-MAGIC45, SQRTHALF+MAGIC45], [MAGIC, 1.0], [0.0, 1.0], - + [0.0, -1.0]], np.float_) Modified: trunk/matplotlib/lib/matplotlib/transforms.py =================================================================== --- trunk/matplotlib/lib/matplotlib/transforms.py 2010年04月28日 20:59:13 UTC (rev 8287) +++ trunk/matplotlib/lib/matplotlib/transforms.py 2010年04月29日 16:18:09 UTC (rev 8288) @@ -1066,7 +1066,7 @@ """ Used by C/C++ -based backends to get at the array matrix data. """ - return self.frozen().__array__() + raise NotImplementedError def transform(self, values): """ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.