[pypy-svn] r49730 - pypy/dist/pypy/rpython/memory/gctransform

arigo at codespeak.net arigo at codespeak.net
Thu Dec 13 17:47:40 CET 2007


Author: arigo
Date: Thu Dec 13 17:47:40 2007
New Revision: 49730

Modified:
   pypy/dist/pypy/rpython/memory/gctransform/framework.py
Log:
Close your open files please :-)


Modified: pypy/dist/pypy/rpython/memory/gctransform/framework.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gctransform/framework.py	(original)
+++ pypy/dist/pypy/rpython/memory/gctransform/framework.py	Thu Dec 13 17:47:40 2007
@@ -534,6 +534,7 @@
         all.sort()
         for typeid, TYPE in all:
             f.write("%s %s\n" % (typeid, TYPE))
+        f.close()
 
     def transform_graph(self, graph):
         if self.write_barrier_ptr:



More information about the Pypy-commit mailing list