|
From: <md...@us...> - 2010-12-14 17:31:17
|
Revision: 8840
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8840&view=rev
Author: mdboom
Date: 2010-12-14 17:31:11 +0000 (Tue, 14 Dec 2010)
Log Message:
-----------
Merged revisions 8839 via svnmerge from
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v1_0_maint
........
r8839 | mdboom | 2010-12-14 12:30:12 -0500 (Tue, 14 Dec 2010) | 2 lines
Fix memory leak in text layout handling.
........
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/text.py
Property Changed:
----------------
trunk/matplotlib/
Property changes on: trunk/matplotlib
___________________________________________________________________
Modified: svnmerge-integrated
- /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8837 /trunk/matplotlib:1-7315
+ /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8839 /trunk/matplotlib:1-7315
Modified: trunk/matplotlib/lib/matplotlib/text.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/text.py 2010-12-14 17:30:12 UTC (rev 8839)
+++ trunk/matplotlib/lib/matplotlib/text.py 2010-12-14 17:31:11 UTC (rev 8840)
@@ -143,6 +143,9 @@
Handle storing and drawing of text in window or data coordinates.
"""
zorder = 3
+
+ cached = maxdict(50)
+
def __str__(self):
return "Text(%g,%g,%s)"%(self._y,self._y,repr(self._text))
@@ -168,7 +171,6 @@
"""
Artist.__init__(self)
- self.cached = maxdict(5)
self._x, self._y = x, y
if color is None: color = rcParams['text.color']
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|