- 05 Jun, 2006 12 commits
-
-
Gregory P. Smith authored
-
Gregory P. Smith authored
-
Gregory P. Smith authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
argument. A lot of hair went into supporting that!
-
Gregory P. Smith authored
-
Hye-Shik Chang authored
decoder. (found by Neal Norwitz)
-
Tim Peters authored
Move the long-winded, multiply-nested -R support out of runtest() and into some module-level helper functions. This makes runtest() and the -R code easier to follow. That in turn allowed seeing some opportunities for code simplification, and made it obvious that reglog.txt never got closed.
-
Gregory P. Smith authored
fix the additional rare (out of memory only) bug that it was supposed to fix of not freeing log_list when the python allocator failed.
-
Gregory P. Smith authored
in BerkeleyDB >= 4.2 it tried to construct a list out of an uninitialized char **log_list. feature: export the DB_ARCH_REMOVE flag by name in the module on BerkeleyDB >= 4.2.
-
Andrew M. Kuchling authored
-
- 04 Jun, 2006 18 commits
-
-
Tim Peters authored
46640 Patch #1454481: Make thread stack size runtime tunable. 46647 Markup fix The first is causing many buildbots to fail test runs, and there are multiple causes with seemingly no immediate prospects for repairing them. See python-dev discussion. Note that a branch can (and should) be created for resolving these problems, like svn copy svn+ssh://svn.python.org/python/trunk -r46640 svn+ssh://svn.python.org/python/branches/NEW_BRANCH followed by merging rev 46647 to the new branch.
-
Tim Peters authored
-
Georg Brandl authored
-
Georg Brandl authored
(thanks to Neal for review)
-
Georg Brandl authored
-
Martin v. Löwis authored
-
George Yoshida authored
-
George Yoshida authored
-
Tim Peters authored
s_unpack_from to PyCFunction.
-
Ronald Oussoren authored
-
Ronald Oussoren authored
the right compiler flags.
-
Martin Blais authored
- Following Guido's comments, renamed * pack_to -> pack_into * recv_buf -> recv_into * recvfrom_buf -> recvfrom_into - Made fixes to _struct.c according to Neal Norwitz comments on the checkins list. - Converted some ints into the appropriate -- I hope -- ssize_t and size_t.
-
Andrew MacIntyre authored
-
Andrew MacIntyre authored
-
Neal Norwitz authored
-
Tim Peters authored
2*sizeof(size_t) now, not 8. This probably accounts for current disasters on the 64-bit buildbot slaves.
-
Tim Peters authored
to each allocated block. This was using 4 bytes for each such piece of info regardless of platform. This didn't really matter before (proof: no bug reports, and the debug-build obmalloc would have assert-failed if it was ever asked for a chunk of memory >= 2**32 bytes), since container indices were plain ints. But after the Py_ssize_t changes, it's at least theoretically possible to allocate a list or string whose guts exceed 2**32 bytes, and the PYMALLOC_DEBUG routines would fail then (having only 4 bytes to record the originally requested size). Now we use sizeof(size_t) bytes for each of a PYMALLOC_DEBUG build's extra debugging fields. This won't make any difference on 32-bit boxes, but will add 16 bytes to each allocation in a debug build on a 64-bit box.
-
Tim Peters authored
-
- 03 Jun, 2006 10 commits
-
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-