[issue10157] Memory leak (r70152)

2010-10-21 Thread Stefan Krah
Stefan Krah added the comment: Hirokazu, the patch looks good to me. Unfortunately Valgrind still reports the leak. -- ___ Python tracker ___ ___

[issue10157] Memory leak (r70152)

2010-10-21 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Hello. Does this patch fix the problem? -- keywords: +patch nosy: +ocean-city Added file: http://bugs.python.org/file19321/py3k_issue10157.patch ___ Python tracker

[issue10157] Memory leak (r70152)

2010-10-21 Thread Stefan Krah
Stefan Krah added the comment: 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)

[issue10157] Memory leak (r70152)

2010-10-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Your traceback suggests it's a string allocated when reading a module file... -- ___ Python tracker ___ ___

[issue10157] Memory leak (r70152)

2010-10-20 Thread Stefan Krah
Stefan Krah added the comment: I tracked it down to r68683, which is still a large commit. -- ___ Python tracker ___ ___ Python-bugs-

[issue10157] Memory leak (r70152)

2010-10-20 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue10157] Memory leak (r70152)

2010-10-20 Thread Stefan Krah
Changes by Stefan Krah : -- assignee: amaury.forgeotdarc -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue10157] Memory leak (r70152)

2010-10-20 Thread Stefan Krah
New submission from Stefan Krah : This is one of two remaining "definitely lost" leaks in py3k. It first appeared in r70152. How to reproduce: make distclean && ./configure OPT="-O0 -g" --without-pymalloc && make valgrind --leak-check=full --suppressions=Misc/valgrind-python.supp ./python > VG