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
(3) |
3
(7) |
4
(7) |
5
(9) |
6
(6) |
7
|
8
(2) |
9
|
10
|
11
|
12
(8) |
13
(5) |
14
(3) |
15
(1) |
16
(2) |
17
(4) |
18
(4) |
19
|
20
|
21
(3) |
22
(2) |
23
|
24
(1) |
25
|
26
|
27
|
28
(1) |
29
|
30
|
31
|
|
|
|
|
|
Revision: 8902 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8902&view=rev Author: mdehoon Date: 2011年01月08日 07:09:23 +0000 (2011年1月08日) Log Message: ----------- Fixing a bug. Due to a race condition, the view of a closing window could get one release too many. Modified Paths: -------------- branches/v1_0_maint/src/_macosx.m Modified: branches/v1_0_maint/src/_macosx.m =================================================================== --- branches/v1_0_maint/src/_macosx.m 2011年01月08日 06:56:42 UTC (rev 8901) +++ branches/v1_0_maint/src/_macosx.m 2011年01月08日 07:09:23 UTC (rev 8902) @@ -3363,7 +3363,6 @@ [window setDelegate: view]; [window makeFirstResponder: view]; [[window contentView] addSubview: view]; - [view release]; [window makeKeyAndOrderFront: nil]; nwin++; @@ -4448,6 +4447,10 @@ gstate = PyGILState_Ensure(); Py_DECREF(manager); PyGILState_Release(gstate); + /* The reference count of the view that was added as a subview to the + * content view of this window was increased during the call to addSubview, + * and is decreased during the call to [super dealloc]. + */ [super dealloc]; } @end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8901 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8901&view=rev Author: mdehoon Date: 2011年01月08日 06:56:42 +0000 (2011年1月08日) Log Message: ----------- Fixing a bug. Due to a race condition, the view of a closing window could get one release too many. Modified Paths: -------------- trunk/matplotlib/src/_macosx.m Modified: trunk/matplotlib/src/_macosx.m =================================================================== --- trunk/matplotlib/src/_macosx.m 2011年01月06日 19:55:16 UTC (rev 8900) +++ trunk/matplotlib/src/_macosx.m 2011年01月08日 06:56:42 UTC (rev 8901) @@ -3755,7 +3755,6 @@ [window setDelegate: view]; [window makeFirstResponder: view]; [[window contentView] addSubview: view]; - [view release]; [window makeKeyAndOrderFront: nil]; nwin++; @@ -4854,6 +4853,10 @@ gstate = PyGILState_Ensure(); Py_DECREF(manager); PyGILState_Release(gstate); + /* The reference count of the view that was added as a subview to the + * content view of this window was increased during the call to addSubview, + * and is decreased during the call to [super dealloc]. + */ [super dealloc]; } @end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.