[issue14951] Daikon/KVasir report: Invalid read of size 4

2012-05-29 Thread Damien Cassou
Damien Cassou added the comment: I didn't read the document before. Sorry about that. The document makes it clear that what I report is not an error. This report should be closed. -- status: open -> closed ___ Python tracke

[issue14951] Daikon/KVasir report: Invalid read of size 4

2012-05-29 Thread Damien Cassou
New submission from Damien Cassou : Hi, I've just executed a dynamic program analyzer (kvasir frontend for daikon) on the python runtime with an hello world python input. I got a lot of errors (796 errors from 61 contexts), potentially showing bugs in cpython. The following presents one

[issue14761] Memleak in import.c load_source_module()

2012-05-09 Thread Damien Cassou
Damien Cassou added the comment: @pitrou I just checked Python-2.7.3 and the tip of the mercurial repository. It's not in the latter at least. -- ___ Python tracker <http://bugs.python.org/is

[issue14761] Memleak in import.c load_source_module()

2012-05-09 Thread Damien Cassou
New submission from Damien Cassou : In load_source_module() function from import.c, it looks like Py_DECREF is not called where it should be. Please find attached a patch that fixes the leak. This bug has been found using Coccinelle (http://coccinelle.lip6.fr/) using a semantic patch

[issue14754] Emacs configuration to enforce PEP7

2012-05-08 Thread Damien Cassou
New submission from Damien Cassou : Please find attached a patch that adds an emacs configuration file to enforce PEP7. The patch is also in commit #518f2af0a687 of my hg repository under the branch emacs-configuration. -- components: Demos and Tools files: emacs-configuration-pep7

[issue14752] Memleak in typeobject add_methods()

2012-05-08 Thread Damien Cassou
New submission from Damien Cassou : In add_methods() function from typeobject.c, it looks like Py_DECREF is not called where it should be. Please find attached a patch that fixes the leak. The patch is also in commit #85a01718b3e3 of my hg repository under the branch fix_add_methods_leak