Message119273
| 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. |
|