Added gc to environment, with preset flags for checking uncollectable objects

svn: r11657
This commit is contained in:
Doug Blank 2009-01-18 14:47:35 +00:00
parent 45a78a2046
commit bb2a4fbcb2

View File

@ -793,10 +793,14 @@ class StatsGramplet(Gramplet):
class PythonGramplet(Gramplet):
def init(self):
import gc
gc.set_debug(gc.DEBUG_UNCOLLECTABLE|gc.DEBUG_OBJECTS|gc.DEBUG_SAVEALL)
self.prompt = ">"
self.set_tooltip(_("Enter Python expressions"))
self.gc = gc
self.env = {"dbstate": self.gui.dbstate,
"uistate": self.gui.uistate,
"gc": self.gc,
"self": self,
_("class name|Date"): gen.lib.Date,
}