- 01 Sep, 2008 2 commits
-
-
Georg Brandl authored
-
Benjamin Peterson authored
Reviewer: Gregory P. Smith
-
- 31 Aug, 2008 7 commits
-
-
Gregory P. Smith authored
escaped.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Jesus Cea authored
be compatible with Python 3.0, also. http://www.jcea.es/programacion/pybsddb.htm#bsddb3-4.7.3
-
Nick Coghlan authored
-
Andrew M. Kuchling authored
-
- 30 Aug, 2008 11 commits
-
-
Andrew M. Kuchling authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
- 29 Aug, 2008 2 commits
-
-
Armin Rigo authored
of issue #3720.
-
Antoine Pitrou authored
exception afterwards (for a subsequent parameter), the user code will not call PyBuffer_Release() and memory will leak. Reviewed by Amaury Forgeot d'Arc.
-
- 28 Aug, 2008 1 commit
-
-
Georg Brandl authored
-
- 27 Aug, 2008 3 commits
-
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
- 26 Aug, 2008 2 commits
-
-
Antoine Pitrou authored
match Python 2.5 speed despite the __instancecheck__ / __subclasscheck__ mechanism. In the process, fix a bug where isinstance() and issubclass(), when given a tuple of classes as second argument, were looking up __instancecheck__ / __subclasscheck__ on the tuple rather than on each type object. Reviewed by Benjamin Peterson and Raymond Hettinger.
-
Benjamin Peterson authored
-
- 25 Aug, 2008 3 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
affects some buildbots. R=Brett TESTED=./python -E -tt ./Lib/test/regrtest.py test_multiprocessing
-
Neal Norwitz authored
Add some test coverage to this code. More tests should be added (TODO added). R=Brett TESTED=./python -E -tt ./Lib/test/regrtest.py test_multiprocessing
-
- 24 Aug, 2008 8 commits
-
-
Brett Cannon authored
Clarify that some attributes/methods are listed somewhat separately because they are not part of the threading API.
-
Neal Norwitz authored
TESTED=./python -E -tt ./Lib/test/regrtest.py test_fileio R (approach from bug)=Amaury and Benjamin
-
Benjamin Peterson authored
-
Georg Brandl authored
-
Benjamin Peterson authored
Reviewer: Brett Cannon
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
* 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.
-
- 23 Aug, 2008 1 commit
-
-
Benjamin Peterson authored
-