This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skrah
Recipients amaury.forgeotdarc, benjamin.peterson, pitrou, skrah, vstinner
Date 2010-10-21.11:03:52
SpamBayes Score 0.000605784
Marked as misclassified No
Message-id <1287659034.92.0.306197931924.issue10157@psf.upfronthosting.co.za>
In-reply-to
Content
I also thought that it might be a pointer that's lost in marshal.c.
However, perhaps a pointer is lost in Py_Finalize. With this ...

Index: Modules/main.c
===================================================================
--- Modules/main.c      (revision 85766)
+++ Modules/main.c      (working copy)
@@ -697,6 +697,7 @@
         sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
     }
 
+    exit(0);
     Py_Finalize();
 
 #ifdef __INSURE__


... Valgrind does not report the leak.
History
Date User Action Args
2010-10-21 11:03:55skrahsetrecipients: + skrah, amaury.forgeotdarc, pitrou, vstinner, benjamin.peterson
2010-10-21 11:03:54skrahsetmessageid: <1287659034.92.0.306197931924.issue10157@psf.upfronthosting.co.za>
2010-10-21 11:03:53skrahlinkissue10157 messages
2010-10-21 11:03:52skrahcreate