- 30 Aug, 2008 4 commits
-
-
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 4 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
Author: Victor Stinner Reviewer: Benjamin Peterson
-
Georg Brandl authored
-
Mark Hammond authored
-
- 22 Aug, 2008 7 commits
-
-
Christian Heimes authored
-
Benjamin Peterson authored
Reviewer: Christian Heimes
-
Christian Heimes authored
Modules/_collectionsmodule.c:674: warning: format '%i' expects type 'int', but argument 2 has type 'Py_ssize_t' Reviewed by Benjamin Peterson
-
Christian Heimes authored
Modules/_sqlite/row.c:187: warning: suggest parentheses around && within || Reviewed by Benjamin Peterson
-
Christian Heimes authored
Objects/stringlib/find.h:97: warning: 'stringlib_contains_obj' defined but not used Reviewed by Benjamin Peterson
-
Christian Heimes authored
Changed type of numarenas from uint to size_t to silence a GCC warning on 64bit OSes. Reviewed by Benjamin Peterson.
-
Robert Schuppenies authored
-
- 21 Aug, 2008 5 commits
-
-
Mark Dickinson authored
rewrite float.fromhex to only allow ASCII hex digits on all platforms. (Tests for this are already present, but the test_float failures on Solaris hadn't been noticed before.) Reviewed by Antoine Pitrou.
-
Mark Dickinson authored
change is aimed at diagnosing issue 3633 (test_float fails on Solaris). Reviewed by Benjamin Peterson
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
- 20 Aug, 2008 1 commit
-