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
(5) |
2
(4) |
3
(2) |
4
(4) |
5
(2) |
6
(32) |
7
(34) |
8
(19) |
9
(6) |
10
(7) |
11
(14) |
12
(1) |
13
(2) |
14
(8) |
15
(5) |
16
(5) |
17
(8) |
18
(8) |
19
(6) |
20
(9) |
21
(12) |
22
(1) |
23
(2) |
24
(8) |
25
(2) |
26
(1) |
27
(2) |
28
(3) |
29
|
30
(2) |
|
|
|
Revision: 7817 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7817&view=rev Author: mdboom Date: 2009年09月23日 17:21:25 +0000 (2009年9月23日) Log Message: ----------- Fix how ipython_console_highlighting is imported. Modified Paths: -------------- trunk/matplotlib/doc/conf.py Modified: trunk/matplotlib/doc/conf.py =================================================================== --- trunk/matplotlib/doc/conf.py 2009年09月23日 06:24:27 UTC (rev 7816) +++ trunk/matplotlib/doc/conf.py 2009年09月23日 17:21:25 UTC (rev 7817) @@ -18,10 +18,6 @@ # absolute, like shown here. sys.path.append(os.path.abspath('sphinxext')) -# Import support for ipython console session syntax highlighting (lives -# in the sphinxext directory defined above) -import ipython_console_highlighting - # General configuration # --------------------- @@ -30,7 +26,8 @@ extensions = ['matplotlib.sphinxext.mathmpl', 'math_symbol_table', 'sphinx.ext.autodoc', 'matplotlib.sphinxext.only_directives', 'matplotlib.sphinxext.plot_directive', 'inheritance_diagram', - 'gen_gallery', 'gen_rst'] + 'gen_gallery', 'gen_rst', + 'matplotlib.sphinxext.ipython_console_highlighting'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 7816 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7816&view=rev Author: astraw Date: 2009年09月23日 06:24:27 +0000 (2009年9月23日) Log Message: ----------- testing: fix docstring. add comments. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/testing/decorators.py Modified: trunk/matplotlib/lib/matplotlib/testing/decorators.py =================================================================== --- trunk/matplotlib/lib/matplotlib/testing/decorators.py 2009年09月22日 14:21:24 UTC (rev 7815) +++ trunk/matplotlib/lib/matplotlib/testing/decorators.py 2009年09月23日 06:24:27 UTC (rev 7816) @@ -39,8 +39,8 @@ def image_comparison(baseline_images=None): """ compare images generated by the test with those specified in - *baseline_images*, which must correspond within tolerance *tol*, - else an ImageComparisonFailure exception will be raised. + *baseline_images*, which must correspond else an + ImageComparisonFailure exception will be raised. """ @@ -51,6 +51,11 @@ result = func(*args,**kwargs) extension = '.png' # TODO: test more backends for fname in baseline_images: + # FIXME: place "actual", or current images, images in + # a more reasonable location than the current + # directory. Also, perhaps put them in sub-directory + # according to the name of the test module like the + # baseline images. actual = fname + extension # compute filename for baseline image This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.