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
(4) |
3
(2) |
4
(9) |
5
|
6
|
7
|
8
|
9
|
10
|
11
(6) |
12
|
13
|
14
|
15
|
16
(10) |
17
(1) |
18
|
19
(1) |
20
|
21
|
22
(3) |
23
|
24
|
25
(2) |
26
|
27
|
28
(3) |
29
(5) |
30
|
31
|
|
|
|
|
|
|
Revision: 8063 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8063&view=rev Author: efiring Date: 2010年01月02日 06:30:15 +0000 (2010年1月02日) Log Message: ----------- Include contourf examples in documentation Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/contour.py Modified: trunk/matplotlib/lib/matplotlib/contour.py =================================================================== --- trunk/matplotlib/lib/matplotlib/contour.py 2010年01月02日 05:20:47 UTC (rev 8062) +++ trunk/matplotlib/lib/matplotlib/contour.py 2010年01月02日 06:30:15 UTC (rev 8063) @@ -987,9 +987,8 @@ signatures and return values are the same for both versions. :func:`~matplotlib.pyplot.contourf` differs from the Matlab - (TM) version in that it does not draw the polygon edges, - because the contouring engine yields simply connected regions - with branch cuts. To draw the edges, add line contours with + (TM) version in that it does not draw the polygon edges. + To draw edges, add line contours with calls to :func:`~matplotlib.pyplot.contour`. @@ -1142,9 +1141,11 @@ be removed. Chunking introduces artifacts at the chunk boundaries unless *antialiased* is *False*. - **Example:** + **Examples:** .. plot:: mpl_examples/pylab_examples/contour_demo.py + + .. plot:: mpl_examples/pylab_examples/contourf_demo.py """ def find_nearest_contour( self, x, y, indices=None, pixel=True ): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8062 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8062&view=rev Author: astraw Date: 2010年01月02日 05:20:47 +0000 (2010年1月02日) Log Message: ----------- buildbot: build docs Modified Paths: -------------- trunk/matplotlib/test/_buildbot_doc.sh Modified: trunk/matplotlib/test/_buildbot_doc.sh =================================================================== --- trunk/matplotlib/test/_buildbot_doc.sh 2010年01月02日 05:10:08 UTC (rev 8061) +++ trunk/matplotlib/test/_buildbot_doc.sh 2010年01月02日 05:20:47 UTC (rev 8062) @@ -2,14 +2,12 @@ set -e TARGET=`pwd`/PYmpl -TARGET_py=$TARGET/bin/python +source $TARGET/bin/activate -$TARGET_py -c "import shutil,matplotlib; x=matplotlib.get_configdir(); shutil.rmtree(x)" +python -c "import shutil,matplotlib; x=matplotlib.get_configdir(); shutil.rmtree(x)" -TARGET_easy_install=$TARGET/bin/easy_install +easy_install sphinx -$TARGET_easy_install sphinx - cd doc -$TARGET_py make.py all +python make.py all This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8061 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8061&view=rev Author: astraw Date: 2010年01月02日 05:10:08 +0000 (2010年1月02日) Log Message: ----------- fix docstring Modified Paths: -------------- trunk/matplotlib/test/_buildbot_test.py Modified: trunk/matplotlib/test/_buildbot_test.py =================================================================== --- trunk/matplotlib/test/_buildbot_test.py 2010年01月02日 05:09:59 UTC (rev 8060) +++ trunk/matplotlib/test/_buildbot_test.py 2010年01月02日 05:10:08 UTC (rev 8061) @@ -1,5 +1,4 @@ -"""This script will install matplotlib to a virtual environment to -faciltate testing.""" +"""This script will test matplotlib in a virtual environment""" import os, glob from _buildbot_util import check_call This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8060 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8060&view=rev Author: astraw Date: 2010年01月02日 05:09:59 +0000 (2010年1月02日) Log Message: ----------- add linux/unix script for building docs in buildbox Added Paths: ----------- trunk/matplotlib/test/_buildbot_doc.sh Added: trunk/matplotlib/test/_buildbot_doc.sh =================================================================== --- trunk/matplotlib/test/_buildbot_doc.sh (rev 0) +++ trunk/matplotlib/test/_buildbot_doc.sh 2010年01月02日 05:09:59 UTC (rev 8060) @@ -0,0 +1,15 @@ +#!/bin/bash +set -e + +TARGET=`pwd`/PYmpl +TARGET_py=$TARGET/bin/python + +$TARGET_py -c "import shutil,matplotlib; x=matplotlib.get_configdir(); shutil.rmtree(x)" + +TARGET_easy_install=$TARGET/bin/easy_install + +$TARGET_easy_install sphinx + +cd doc + +$TARGET_py make.py all Property changes on: trunk/matplotlib/test/_buildbot_doc.sh ___________________________________________________________________ Added: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.