summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Fix some Py_ssize_t issuesNeal Norwitz2006-06-123-9/+10
* Fix some Py_ssize_t issuesNeal Norwitz2006-06-121-5/+6
* Cleanup Py_ssize_t a little (get rid of second #ifdef)Neal Norwitz2006-06-121-5/+2
* Release the GIL during COM method calls, to avoid deadlocks inThomas Heller2006-06-111-3/+10
* Wrap some long linesNeal Norwitz2006-06-111-15/+10
* Fix Coverity # 146. newDBSequenceObject would deref dbobj, so it can't be NULL.Neal Norwitz2006-06-111-4/+2
* Handle failure of PyMem_Realloc.Thomas Heller2006-06-101-1/+4
* Don't use C++ comment.Thomas Heller2006-06-101-1/+1
* Fix the second occurrence of the problematic printf format.Thomas Heller2006-06-101-5/+1
* Fix a wrong printf format.Thomas Heller2006-06-101-6/+1
* Upgrade to ctypes version 0.9.9.7.Thomas Heller2006-06-106-284/+496
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-108-6/+32
* Turn off warning about deprecated CRT functions on for VisualStudio .NET 2005.Kristján Valur Jónsson2006-06-091-0/+2
* Buffer objects would return the read or write buffer for a wrapped object whenBrett Cannon2006-06-081-0/+1
* Make binascii.hexlify() use s# for its arguments instead of t# to actuallyBrett Cannon2006-06-081-1/+1
* Fix a refleak in recvfrom_intoNeal Norwitz2006-06-081-1/+1
* Fix for foreign functions returning small structures on 64-bit bigThomas Heller2006-06-071-1/+3
* Use the same big-endian hack as in _ctypes/callproc.c for callback functions.Thomas Heller2006-06-061-36/+7
* Add a hack so that foreign functions returning float now do work on 64-bitThomas Heller2006-06-061-1/+6
* BSequence_set_range(): Rev 46688 ("Fix a bunch ofTim Peters2006-06-061-1/+1
* Damn - the sentinel was missing. And fix another silly mistake.Thomas Heller2006-06-061-1/+2
* Convert CFieldObject tp_members to tp_getset, since there is noThomas Heller2006-06-061-11/+25
* Fix a bunch of parameter stringsNeal Norwitz2006-06-061-7/+7
* Remove unused variable (and stop compiler warning)Neal Norwitz2006-06-061-1/+0
* - bsddb: the __len__ method of a DB object has been fixed to return correctGregory P. Smith2006-06-051-6/+17
* * fix DBCursor.pget() bug with keyword argument names when no data= isGregory P. Smith2006-06-051-4/+4
* * add support for DBSequence objects [patch #1466734]Gregory P. Smith2006-06-051-6/+455
* * support DBEnv.lsn_reset() method on BerkeleyDB >= 4.4 [patch #1494902]Gregory P. Smith2006-06-051-0/+25
* * support DBEnv.log_stat() method on BerkeleyDB >= 4.0 [patch #1494885]Gregory P. Smith2006-06-051-0/+68
* Fix a potentially invalid memory access of CJKCodecs' shift-jisHye-Shik Chang2006-06-051-1/+2
* fix a bug in the previous commit. don't leak empty list on error return andGregory P. Smith2006-06-051-4/+7
* bugfix: when log_archive was called with the DB_ARCH_REMOVE flag presentGregory P. Smith2006-06-051-5/+9
* 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