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
(3) |
2
(3) |
3
|
4
(2) |
5
(9) |
6
(4) |
7
(9) |
8
(7) |
9
(2) |
10
(3) |
11
(2) |
12
|
13
(2) |
14
(10) |
15
(24) |
16
(17) |
17
(21) |
18
(3) |
19
(23) |
20
(6) |
21
(4) |
22
(14) |
23
(11) |
24
(15) |
25
(6) |
26
(1) |
27
(4) |
28
(3) |
29
(9) |
30
(6) |
31
(2) |
|
Revision: 6180 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6180&view=rev Author: jouni Date: 2008年10月11日 18:27:35 +0000 (2008年10月11日) Log Message: ----------- Mention the pdf flushing fix in CHANGELOG Modified Paths: -------------- trunk/matplotlib/CHANGELOG Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008年10月11日 13:48:18 UTC (rev 6179) +++ trunk/matplotlib/CHANGELOG 2008年10月11日 18:27:35 UTC (rev 6180) @@ -1,3 +1,7 @@ +2008年10月11日 Fixed bug in pdf backend: if you pass a file object for + output instead of a filename, e.g. in a wep app, we now + flush the object at the end. - JKS + 2008年10月08日 Add path simplification support to paths with gaps. - EF 2008年10月05日 Fix problem with AFM files that don't specify the font's This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 6179 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6179&view=rev Author: jouni Date: 2008年10月11日 13:48:18 +0000 (2008年10月11日) Log Message: ----------- When outputting a pdf file on a file object, flush the file at the end Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/backends/backend_pdf.py Modified: trunk/matplotlib/lib/matplotlib/backends/backend_pdf.py =================================================================== --- trunk/matplotlib/lib/matplotlib/backends/backend_pdf.py 2008年10月10日 19:43:34 UTC (rev 6178) +++ trunk/matplotlib/lib/matplotlib/backends/backend_pdf.py 2008年10月11日 13:48:18 UTC (rev 6179) @@ -446,7 +446,9 @@ self.writeMarkers() self.writeXref() self.writeTrailer() - if not self.passed_in_file_object: + if self.passed_in_file_object: + self.fh.flush() + else: self.fh.close() def write(self, data): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.