summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Whitespace normalization.Tim Peters2006-06-0445-45/+0
|
* Bug #1500293: fix memory leaks in _subprocess module.Georg Brandl2006-06-042-8/+15
|
* Patch #1346214: correctly optimize away "if 0"-style stmtsGeorg Brandl2006-06-045-18/+57
| | | | (thanks to Neal for review)
* Repair refleaks in unicodeobject.Georg Brandl2006-06-041-0/+3
|
* Patch #1359618: Speed-up charmap encoder.Martin v. Löwis2006-06-0451-11516/+510
|
* Markup fixGeorge Yoshida2006-06-042-6/+6
|
* Remove a redundant wordGeorge Yoshida2006-06-041-1/+0
|
* s_methods[]: Stop compiler warnings by castingTim Peters2006-06-041-1/+2
| | | | s_unpack_from to PyCFunction.
* Drop Mac wrappers for the WASTE library.Ronald Oussoren2006-06-0413-5608/+1
|
* "Import" LDFLAGS in Mac/OSX/Makefile.in to ensure pythonw gets build withRonald Oussoren2006-06-041-0/+1
| | | | the right compiler flags.
* Fixes in struct and socket from merge reviews.Martin Blais2006-06-046-74/+75
| | | | | | | | | | | | | - 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.
* clean up function declarations to conform to PEP-7 style.Andrew MacIntyre2006-06-043-22/+44
|
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-0414-5/+332
|
* SF #1499797, Fix for memory leak in WindowsError_strNeal Norwitz2006-06-041-1/+0
|
* _PyObject_DebugMalloc(): The return value should addTim Peters2006-06-041-1/+1
| | | | | 2*sizeof(size_t) now, not 8. This probably accounts for current disasters on the 64-bit buildbot slaves.
* In a PYMALLOC_DEBUG build obmalloc adds extra debugging infoTim Peters2006-06-043-131/+149
| | | | | | | | | | | | | | | | | 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.
* Whitespace normalization.Tim Peters2006-06-041-2/+1
|
* Add more whitespace; use a better socket nameAndrew M. Kuchling2006-06-032-5/+14
|
* Remove dangling referenceAndrew M. Kuchling2006-06-031-1/+0
|
* Remove xmlrpc/ directoryAndrew M. Kuchling2006-06-031-3/+0
|
* Remove xmlrpc demo -- it duplicates the SimpleXMLRPCServer module.Andrew M. Kuchling2006-06-031-75/+0
|
* This demo requires Medusa (not just asyncore); remove itAndrew M. Kuchling2006-06-031-104/+0
|
* Use functions; modernize codeAndrew M. Kuchling2006-06-031-60/+87
|
* Put code in a main() function; loosen up the spacing to match current code styleAndrew M. Kuchling2006-06-031-32/+45
|
* Docstring fix; use TrueAndrew M. Kuchling2006-06-031-2/+2
|
* Use true division, and the True valueAndrew M. Kuchling2006-06-031-12/+13
|
* Use True; value returned from main is unusedAndrew M. Kuchling2006-06-031-2/+2
|
* Some code tidying; use curses.wrapperAndrew M. Kuchling2006-06-031-67/+61
|
* Drop 0 parameterAndrew M. Kuchling2006-06-031-3/+3
|
* Update readmeAndrew M. Kuchling2006-06-031-4/+1
|
* "_self" is a said to be a reserved word in Watcom C 10.6. I'mFredrik Lundh2006-06-031-2/+2
| | | | | not sure that's really standard compliant behaviour, but I guess we have to fix that anyway...
* [Bug #1497414] _self is a reserved word in the WATCOM 10.6 C compiler.Andrew M. Kuchling2006-06-031-15/+15
| | | | | | | | | | Fix by renaming the variable. In a different module, Neal fixed it by renaming _self to self. There's already a variable named 'self' here, so I used selfptr. (I'm committing this on a Mac without Tk, but it's a simple search-and-replace. <crosses fingers>, so I'll watch the buildbots and see what happens.)
* Minor rewordingAndrew M. Kuchling2006-06-031-7/+7
|
* [Bug #1441864] Clarify description of 'data' argumentAndrew M. Kuchling2006-06-031-5/+7
|
* [Bug #1475554] Strengthen text to say 'must' instead of 'should'Andrew M. Kuchling2006-06-031-2/+2
|
* [Bug #1472084] Fix description of do_tagAndrew M. Kuchling2006-06-031-2/+3
|
* Updated version (win32-icons2.zip) from #1490384.Martin v. Löwis2006-06-033-0/+0
|
* Port to OpenBSD 3.9. Patch from Aldo Cortesi.Martin v. Löwis2006-06-033-5/+35
|
* Remove Mac OS 9 support ↵Neal Norwitz2006-06-0374-12895/+0
| | | | (http://mail.python.org/pipermail/python-dev/2006-June/065538.html)
* pprint functions used to sort a dict (by key) if and only ifTim Peters2006-06-024-5/+42
| | | | | | | | | | | the output required more than one line. "Small" dicts got displayed in seemingly random order (the hash-induced order produced by dict.__repr__). None of this was documented. Now pprint functions always sort dicts by key, and the docs promise it. This was proposed and agreed to during the PyCon 2006 core sprint -- I just didn't have time for it before now.
* Fixed struct test to not use unittest.Martin Blais2006-06-021-78/+84
|
* Patch #1357836:Neal Norwitz2006-06-021-9/+11
| | | | | | | | | | Prevent an invalid memory read from test_coding in case the done flag is set. In that case, the loop isn't entered. I wonder if rather than setting the done flag in the cases before the loop, if they should just exit early. This code looks like it should be refactored. Backport candidate (also the early break above if decoding_fgets fails)
* More memory leaks from valgrindNeal Norwitz2006-06-021-0/+4
|
* Fix memory leak found by valgrind.Neal Norwitz2006-06-022-3/+4
|
* Convert docstrings to comments so regrtest -v prints method namesNeal Norwitz2006-06-021-7/+7
|
* Armin committed his patch while I was reviewing it (I'm sureTim Peters2006-06-011-28/+40
| | | | | | | | he didn't know this), so merged in some changes I made during review. Nothing material apart from changing a new `mask` local from int to Py_ssize_t. Mostly this is repairing comments that were made incorrect, and adding new comments. Also a few minor code rewrites for clarity or helpful succinctness.
* Re-enable a new empty-string test added during the NFS sprint,Tim Peters2006-06-011-6/+1
| | | | | | but disabled then because str and unicode strings gave different results. The implementations were repaired later during the sprint, but the new test remained disabled.
* Record bugs 1275608 and 1456209 as being fixed.Tim Peters2006-06-011-4/+9
|
* Whitespace normalization.Tim Peters2006-06-011-10/+10
|
* [ 1497053 ] Let dicts propagate the exceptions in user __eq__().Armin Rigo2006-06-016-101/+183
| | | | [ 1456209 ] dictresize() vulnerability ( <- backport candidate ).