|
From: <md...@us...> - 2010-11-30 17:20:57
|
Revision: 8811
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8811&view=rev
Author: mdboom
Date: 2010-11-30 17:20:51 +0000 (Tue, 30 Nov 2010)
Log Message:
-----------
Merged revisions 8810 via svnmerge from
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v1_0_maint
........
r8810 | mdboom | 2010-11-30 12:20:14 -0500 (Tue, 30 Nov 2010) | 2 lines
Fix memory leak in PyCXX.
........
Modified Paths:
--------------
trunk/matplotlib/CXX/Python2/ExtensionOldType.hxx
Property Changed:
----------------
trunk/matplotlib/
Property changes on: trunk/matplotlib
___________________________________________________________________
Modified: svnmerge-integrated
- /trunk/matplotlib:1-7315 /branches/mathtex:1-7263 /branches/v0_98_5_maint:1-7253 /branches/v0_91_maint:1-6428 /branches/v1_0_maint:1-8808
+ /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8810 /trunk/matplotlib:1-7315
Modified: trunk/matplotlib/CXX/Python2/ExtensionOldType.hxx
===================================================================
--- trunk/matplotlib/CXX/Python2/ExtensionOldType.hxx 2010-11-30 17:20:14 UTC (rev 8810)
+++ trunk/matplotlib/CXX/Python2/ExtensionOldType.hxx 2010-11-30 17:20:51 UTC (rev 8811)
@@ -173,7 +173,7 @@
Tuple self( 2 );
self[0] = Object( this );
- self[1] = Object( PyCObject_FromVoidPtr( method_def, do_not_dealloc ) );
+ self[1] = Object( PyCObject_FromVoidPtr( method_def, do_not_dealloc ), true );
PyObject *func = PyCFunction_New( &method_def->ext_meth_def, self.ptr() );
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|