summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Revert revisions:Tim Peters2006-06-041-48/+0
* Patch #1359618: Speed-up charmap encoder.Martin v. Löwis2006-06-041-0/+10
* s_methods[]: Stop compiler warnings by castingTim Peters2006-06-041-1/+2
* Fixes in struct and socket from merge reviews.Martin Blais2006-06-042-50/+51
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-041-0/+48
* "_self" is a said to be a reserved word in Watcom C 10.6. I'mFredrik Lundh2006-06-031-2/+2
* [Bug #1497414] _self is a reserved word in the WATCOM 10.6 C compiler.Andrew M. Kuchling2006-06-031-15/+15
* More memory leaks from valgrindNeal Norwitz2006-06-021-0/+4
* Repaired error in new comment.Tim Peters2006-05-311-4/+4
* _range_error(): Speed and simplify (there's no real need forTim Peters2006-05-311-17/+19
* Trimmed trailing whitespace.Tim Peters2006-05-311-22/+22
* PyTuple_Pack is not available in Python 2.3, but ctypes must stayThomas Heller2006-05-311-1/+1
* Calculate smallest properly (it was off by one) and use proper ssize_t types ...Neal Norwitz2006-05-311-5/+5
* Change wrapping terminology to overflow maskingBob Ippolito2006-05-301-18/+18
* Simplify further by using AddStringConstantNeal Norwitz2006-05-301-4/+2
* struct: modulo math plus warning on all endian-explicit formats for compatibi...Bob Ippolito2006-05-291-11/+163
* Whoops.Georg Brandl2006-05-291-2/+6
* Convert more modules to METH_VARARGS.Georg Brandl2006-05-292-15/+10
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-2924-401/+183
* Correct some value converting strangenesses.Georg Brandl2006-05-292-4/+4
* Silence a warning.Armin Rigo2006-05-291-1/+1
* simplify the struct code a bit (no functional changes)Bob Ippolito2006-05-291-23/+31
* Convert fmmodule to METH_VARARGS.Georg Brandl2006-05-291-11/+11
* Apply modified version of Collin Winter's patch #1478788Nick Coghlan2006-05-291-6/+6
* Fix refleak in socketmodule. Replace bogus Py_BuildValue calls.Georg Brandl2006-05-291-3/+5
* METH_NOARGS functions do get called with two args.Georg Brandl2006-05-281-5/+5
* Convert audioop over to METH_VARARGS.Georg Brandl2006-05-281-60/+66
* Fix C function calling conventions in _sre module.Georg Brandl2006-05-281-38/+18
* Fix ref-antileak in _struct.c which eventually lead to deallocating None.Georg Brandl2006-05-281-1/+1
* fix struct regression on 64-bit platformsBob Ippolito2006-05-271-22/+36
* needforspeed: use PyObject_MALLOC instead of system malloc for smallJack Diederich2006-05-271-4/+4
* Conversion of exceptions over from faked-up classes to new-style C types.Richard Jones2006-05-271-2/+0
* Fix up struct docstrings, add struct.pack_to function for symmetryBob Ippolito2006-05-271-8/+8
* Remove the range checking and int usage #defines from _struct and strip out t...Bob Ippolito2006-05-271-63/+8
* Explain why 'consumed' is initialized.Martin v. Löwis2006-05-271-8/+4
* Patch 1494554: Update numeric properties to Unicode 4.1.Martin v. Löwis2006-05-271-2/+2
* Fix compiler warning (and whitespace) on Mac OS 10.4. (A lot of this code lo...Neal Norwitz2006-05-271-4/+4
* enable all of the struct tests, use ssize_t, fix some whitespaceBob Ippolito2006-05-261-58/+67
* Replace Py_BuildValue("OO") by PyTuple_Pack.Georg Brandl2006-05-261-1/+1
* Repair Windows compiler warnings about mixingTim Peters2006-05-261-2/+2
* fix signed/unsigned mismatch in structBob Ippolito2006-05-261-2/+2
* Enable PY_USE_INT_WHEN_POSSIBLE in structBob Ippolito2006-05-261-3/+1
* Fix _struct typo that broke some 64-bit platformsBob Ippolito2006-05-261-1/+1
* Fix distutils so that libffi will cross-compile between darwin/x86 and darwin...Bob Ippolito2006-05-261-1/+1
* fix #1229380 No struct.pack exception for some out of range integersBob Ippolito2006-05-261-10/+93
* Support for buffer protocol for socket and struct.Martin Blais2006-05-263-176/+436
* use Py_ssize_t in places that may need itJack Diederich2006-05-261-25/+25
* Repair idiot typo, and complete the job of trying toTim Peters2006-05-251-4/+4
* Move over to use of METH_O and METH_NOARGS.Brett Cannon2006-05-251-12/+24
* Add missing files from x86 darwin ctypes patchBob Ippolito2006-05-253-0/+830