Files
cpython/Lib
Neal Norwitz 18aa388ca0 Fix:
* crashes on memory allocation failure found with failmalloc
 * memory leaks found with valgrind
 * compiler warnings in opt mode which would lead to invalid memory reads
 * problem using wrong name in decimal module reported by pychecker

Update the valgrind suppressions file with new leaks that are small/one-time
leaks we don't care about (ie, they are too hard to fix).

TBR=barry
TESTED=./python -E -tt ./Lib/test/regrtest.py -uall (both debug and opt modes)
  in opt mode:
  valgrind -q --leak-check=yes --suppressions=Misc/valgrind-python.supp \
    ./python -E -tt ./Lib/test/regrtest.py -uall,-bsddb,-compiler \
                        -x test_logging test_ssl test_multiprocessing
  valgrind -q --leak-check=yes --suppressions=Misc/valgrind-python.supp \
    ./python -E -tt ./Lib/test/regrtest.py test_multiprocessing
  for i in `seq 1 4000` ; do
    LD_PRELOAD=~/local/lib/libfailmalloc.so FAILMALLOC_INTERVAL=$i \
        ./python -c pass
  done

At least some of these fixes should probably be backported to 2.5.
2008-08-24 05:04:52 +00:00
..
2008-08-21 01:15:08 +00:00
2008-08-21 01:15:08 +00:00
2008-07-14 17:42:17 +00:00
2008-06-21 13:48:38 +00:00
2008-07-16 22:09:17 +00:00
2008-05-20 07:49:57 +00:00
2008-08-24 05:04:52 +00:00
2008-04-22 08:08:41 +00:00
2008-08-19 19:07:38 +00:00
2008-05-10 22:45:07 +00:00
2008-08-18 00:36:52 +00:00
2008-05-09 00:27:01 +00:00
2008-05-09 00:27:01 +00:00
2008-05-11 14:17:13 +00:00
2008-05-09 00:27:01 +00:00
2008-04-28 02:57:23 +00:00
2008-06-11 17:27:50 +00:00
2008-05-10 02:27:04 +00:00
2008-07-14 17:42:17 +00:00
2008-05-10 17:36:24 +00:00
2008-05-27 01:18:39 +00:00
2008-08-20 02:15:42 +00:00
2008-04-08 22:07:05 +00:00