summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Use the new PyFile_IncUseCount & PyFile_DecUseCount calls appropriatlyGregory P. Smith2008-04-072-0/+19
* typeSkip Montanaro2008-04-061-1/+1
* Declare inittimezone static.Skip Montanaro2008-04-051-2/+3
* More files from libffi 3.0.5.Thomas Heller2008-04-044-22/+20
* Sync with files from the just released libffi 3.0.5 version.Thomas Heller2008-04-045-2/+1246
* Issue #2543: Make ctypes compatible (again) with Python 2.3, 2.4, and 2.5.Thomas Heller2008-04-042-26/+38
* Remove the advertising clause from the BSD license in timing.h.Guido van Rossum2008-04-011-6/+3
* Backport #1442: report exception when startup file cannot be run.Georg Brandl2008-03-291-0/+9
* Repair compilation for Visual Studio 2005.Amaury Forgeot d'Arc2008-03-281-0/+4
* Update sqlite3 module to match current version of pysqlite.Gerhard Häring2008-03-288-15/+35
* Accept patch issue2426 by Paul Kippes (kippesp).Gregory P. Smith2008-03-281-0/+48
* Fix compiler warningsNeal Norwitz2008-03-271-2/+2
* Fix and simplify error handling, silencing a compiler warning.Georg Brandl2008-03-261-7/+4
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-1/+4
* Minor docstring typosAndrew M. Kuchling2008-03-261-5/+5
* Make _ctypes.c PY_SSIZE_T_CLEAN.Thomas Heller2008-03-251-2/+4
* #2359: add Py3k warning for array.read/array.write.Georg Brandl2008-03-251-2/+26
* On platforms without zlib, make this do the right thing and return the pythonGregory P. Smith2008-03-251-71/+58
* Use a 32-bit unsigned int here, a long is not needed.Gregory P. Smith2008-03-252-6/+6
* Conditionalize sys/time.h inclusion.Martin v. Löwis2008-03-241-0/+2
* Patch #2240: Implement signal.setitimer and signal.getitimer.Martin v. Löwis2008-03-241-3/+149
* Have the binascii module use zlib's optimized crc32() function when availableGregory P. Smith2008-03-241-0/+24
* replace calls to get the initial values with the raw constants.Gregory P. Smith2008-03-231-2/+2
* Revert r61779 - It undid correct code and caused test_zlib to fail on allGregory P. Smith2008-03-231-4/+2
* Fix test_tarfile failures on Alpha (Tru64). The problem was caused in r61449Neal Norwitz2008-03-231-2/+4
* Applied patch #1657 epoll and kqueue wrappers for the select moduleChristian Heimes2008-03-211-12/+1163
* Prevent ioctl op codes from being sign extended from int to unsigned longGregory P. Smith2008-03-191-5/+14
* Remove itertools warnings I had added before the 2-to-3 handled the migration.Raymond Hettinger2008-03-191-25/+0
* The filter() function does support a None argument in Py3.0.Raymond Hettinger2008-03-191-9/+0
* Added zip, map, filter to future_bultins (#2171)David Wolever2008-03-192-3/+25
* Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing.Gregory P. Smith2008-03-181-1/+1
* Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) asGregory P. Smith2008-03-181-2/+2
* Cast the arguments to PyString_AsStringAndSize() to silence compiler warningsBrett Cannon2008-03-181-1/+2
* Remove all traces of HAVE_STRERROR.Brett Cannon2008-03-184-23/+2
* Include <alloca.h> on Solaris, see issue #1506.Thomas Heller2008-03-181-0/+4
* Use a buffer large enough to ensure we don't overrun, even if the valueNeal Norwitz2008-03-171-1/+1
* Force zlib.crc32 and zlib.adler32 to return a signed integer on all platformsGregory P. Smith2008-03-171-8/+17
* add %f format to datetime - issue 1158Skip Montanaro2008-03-152-25/+79
* Remove unneeded initializer.Thomas Heller2008-03-141-1/+1
* Leave heapreplace() unchanged.Raymond Hettinger2008-03-141-5/+0
* Issue 2274: Add heapq.heappushpop().Raymond Hettinger2008-03-131-0/+49
* Consistent tense.Raymond Hettinger2008-03-131-1/+1
* Add 2-to-3 support for the itertools moved to builtins or renamed.Raymond Hettinger2008-03-131-0/+25
* Issue 2246: itertools grouper object did not participate in GC (should be ba...Raymond Hettinger2008-03-061-5/+15
* Small code cleanup.Raymond Hettinger2008-03-051-4/+2
* C implementation of itertools.permutations().Raymond Hettinger2008-03-051-0/+274
* Issue 1872: Changed the struct module typecode from 't' to '?', forThomas Heller2008-03-054-11/+20
* Fix refleak in chain().Raymond Hettinger2008-03-041-1/+1
* Try to fix the build for PY_LINUX.Thomas Heller2008-03-041-0/+1
* Merged changes from libffi3-branch.Thomas Heller2008-03-0497-3423/+38619