[issue12612] Valgrind suppressions

2015-11-05 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 92dda5f00b0f by doko in branch '2.7':
Issue #12612: Add some Valgrind suppressions for 64-bit machines.
https://hg.python.org/cpython/rev/92dda5f00b0f

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12612] Valgrind suppressions

2015-11-04 Thread Marius Gedminas

Marius Gedminas added the comment:

Could this fix be backported to the 2.7 branch as well?

--
nosy: +mgedmin

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12612] Valgrind suppressions

2011-12-03 Thread Roundup Robot

Roundup Robot devn...@psf.upfronthosting.co.za added the comment:

New changeset 3eb73f45a614 by Charles-François Natali in branch 'default':
Issue #12612: Add some Valgrind suppressions for 64-bit machines. Patch by Paul
http://hg.python.org/cpython/rev/3eb73f45a614

--
nosy: +python-dev

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12612
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12612] Valgrind suppressions

2011-12-03 Thread Charles-François Natali

Charles-François Natali neolo...@free.fr added the comment:

Committed, thanks for the patch!

--
resolution:  - fixed
stage:  - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12612
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12612] Valgrind suppressions

2011-12-03 Thread Paul Price

Paul Price pr...@astro.princeton.edu added the comment:

Welcome.  Thank you!

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12612
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12612] Valgrind suppressions

2011-12-01 Thread Zhiping Deng

Zhiping Deng kofreesty...@gmail.com added the comment:

It works for me!

--
nosy: +Zhiping.Deng

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12612
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12612] Valgrind suppressions

2011-12-01 Thread Charles-François Natali

Charles-François Natali neolo...@free.fr added the comment:

Could you please provide a diff ?
Also, they should probably be commented by default (as other obmalloc-related 
calls).

--
nosy: +neologix

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12612
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12612] Valgrind suppressions

2011-12-01 Thread Paul Price

Paul Price pr...@astro.princeton.edu added the comment:

Here's the diff with the added sections commented out.

--
keywords: +patch
Added file: http://bugs.python.org/file23831/proposed.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12612
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12612] Valgrind suppressions

2011-08-01 Thread Daniel Stutzbach

Changes by Daniel Stutzbach stutzb...@google.com:


--
nosy: +stutzbach

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12612
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12612] Valgrind suppressions

2011-07-22 Thread Paul Price

New submission from Paul Price pr...@astro.princeton.edu:

I am running Python 2.7.1 under Valgrind 3.6.1 on a x86_64 GNU/Linux box.  
Valgrind is flagging errors that are not covered by the standard suppressions 
file (Misc/valgrind-python.supp; after uncommenting the part I'm supposed to), 
e.g.:

==5804== Use of uninitialised value of size 8
==5804==at 0x4EBA956: PyObject_Free (obmalloc.c:958)
==5804==by 0x4E85D65: code_dealloc (codeobject.c:317)
==5804==by 0x4ECE23C: tupledealloc (tupleobject.c:220)
==5804==by 0x4E85E42: code_dealloc (codeobject.c:308)
==5804==by 0x4F3315D: load_source_module (import.c:1022)
==5804==by 0x4F33F7E: import_submodule (import.c:2596)
==5804==by 0x4F3420E: load_next (import.c:2416)
==5804==by 0x4F3484F: import_module_level (import.c:2137)
==5804==by 0x4F34DA3: PyImport_ImportModuleLevel (import.c:2189)
==5804==by 0x4F16ABE: builtin___import__ (bltinmodule.c:49)
==5804==by 0x4E6DA42: PyObject_Call (abstract.c:2529)
==5804==by 0x4F16F82: PyEval_CallObjectWithKeywords (ceval.c:3881)

==5804== Use of uninitialised value of size 8
==5804==at 0x4EBA956: PyObject_Free (obmalloc.c:958)
==5804==by 0x4E85D65: code_dealloc (codeobject.c:317)
==5804==by 0x4F3315D: load_source_module (import.c:1022)
==5804==by 0x4F33F7E: import_submodule (import.c:2596)
==5804==by 0x4F3420E: load_next (import.c:2416)
==5804==by 0x4F3484F: import_module_level (import.c:2137)
==5804==by 0x4F34DA3: PyImport_ImportModuleLevel (import.c:2189)
==5804==by 0x4F16ABE: builtin___import__ (bltinmodule.c:49)
==5804==by 0x4E6DA42: PyObject_Call (abstract.c:2529)
==5804==by 0x4F16F82: PyEval_CallObjectWithKeywords (ceval.c:3881)
==5804==by 0x4F1ACD3: PyEval_EvalFrameEx (ceval.c:2332)
==5804==by 0x4F1F347: PyEval_EvalCodeEx (ceval.c:3252)

etc.

Perhaps the suppressions file covers only 32-bit machines, because if I add:

{
   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
   Memcheck:Addr8
   fun:PyObject_Free
}

{
   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
   Memcheck:Value8
   fun:PyObject_Free
}

{
   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
   Memcheck:Addr8
   fun:PyObject_Realloc
}

{
   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
   Memcheck:Value8
   fun:PyObject_Realloc
}

(i.e., Value8 instead of Value4) then all is clear.

--
components: None
messages: 140895
nosy: Paul.Price
priority: normal
severity: normal
status: open
title: Valgrind suppressions
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12612
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12612] Valgrind suppressions

2011-07-22 Thread STINNER Victor

Changes by STINNER Victor victor.stin...@haypocalc.com:


--
nosy: +haypo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12612
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com