[issue32848] Valgrind error with python

2018-02-15 Thread Christian Heimes
Christian Heimes added the comment: You are missing some dependencies. You have to install valgrind development package. This is a bug tracker, not a support forum. Please use the Python users mailing list or #python IRC channel to get help. -- nosy: +christian.heimes resolution: ->

[issue32848] Valgrind error with python

2018-02-15 Thread Arun Solomon
Arun Solomon added the comment: Hi Stefan, I tried with two configure options. Both of them, I am getting the same error. configure: error: Valgrind support requested but headers not available -- resolution: not a bug -> status: closed -> open ___

[issue32848] Valgrind error with python

2018-02-15 Thread Stefan Krah
Change by Stefan Krah : -- resolution: -> not a bug status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue32848] Valgrind error with python

2018-02-15 Thread Stefan Krah
Stefan Krah added the comment: You have two options: a) ./configure CFLAGS="-O0 -g" --without-pymalloc b) ./configure CFLAGS="-O0 -g" --with-valgrind For b) you need the Valgrind headers installed. --with-pydebug is always wrong when using Valgrind. -- nosy: +skrah status: pen

[issue32848] Valgrind error with python

2018-02-15 Thread Arun Solomon
Arun Solomon added the comment: Hi, I ran with the following command to configure python with valgrind: ./configure --without-pymalloc --with-pydebug --with-valgrind I was getting the following error: configure: error: Valgrind support requested but headers not available Python: 2.7.5 Valgr

[issue32848] Valgrind error with python

2018-02-15 Thread R. David Murray
R. David Murray added the comment: Did you notice that our configure has a --with-valgrind option? In any case, there isn't a bug in python here that you are reporting. If you want to continue to learn about our existing support for valgrind and find things that can be improved, you are wel

[issue32848] Valgrind error with python

2018-02-14 Thread Arun Solomon
New submission from Arun Solomon : Hi... I am facing the problem python along with valgrind. I was getting default valgrind warnings messages. I have created the sample.py. sample.py file does not have any code. I created empty py file to confirm that my code does not have any memory leaks.