summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* enable darwin/x86 support for libffi and hence ctypes (doesn't yet support --...Bob Ippolito2006-05-259-6/+120
* Use faster struct pack/unpack functions for the endian table that matches the...Bob Ippolito2006-05-251-3/+27
* Use LONG_MIN and LONG_MAX to check Python integer bounds instead of the incor...Bob Ippolito2006-05-251-10/+13
* Replace PyObject_CallFunction calls with only object argsGeorg Brandl2006-05-253-5/+5
* fix a struct regression where long would be returned for short unsigned integersBob Ippolito2006-05-251-0/+6
* Fix Cygwin compiler issueBob Ippolito2006-05-251-1/+5
* Struct now unpacks to PY_LONG_LONG directly when possible, also include #ifde...Bob Ippolito2006-05-251-6/+88
* refactor unpack, add unpack_fromBob Ippolito2006-05-241-62/+108
* fix typo in _structBob Ippolito2006-05-231-2/+2
* forward declaration for PyStructTypeBob Ippolito2006-05-231-0/+1
* fix linking issue, warnings, in structBob Ippolito2006-05-231-4/+0
* patch #1493701: performance enhancements for struct moduleBob Ippolito2006-05-232-0/+1355
* patch #1493701: performance enhancements for struct moduleBob Ippolito2006-05-232-1294/+1
* revert #1493701Bob Ippolito2006-05-232-337/+275
* Patch #1493701: performance enhancements for struct module.Bob Ippolito2006-05-232-275/+337
* Patch #1492356: Port to Windows CE (patch set 1).Martin v. Löwis2006-05-224-110/+115
* Patch #1490224: set time.altzone correctly on Cygwin.Georg Brandl2006-05-171-1/+1
* Fix typo in os.utime docstring (patch #1490189)Georg Brandl2006-05-171-1/+1
* PyZlib_copy(), PyZlib_uncopy(): Repair leaks on the normal-case path.Tim Peters2006-05-171-5/+9
* Patch #1435422: zlib's compress and decompress objects now have aGeorg Brandl2006-05-161-0/+102
* - Test for sys/statvfs.h before including it, as statvfs is presentMartin v. Löwis2006-05-161-5/+5
* Fix memory leak.Martin v. Löwis2006-05-151-0/+1
* Remove lie in new comment.Tim Peters2006-05-131-3/+1
* Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatVTim Peters2006-05-131-4/+43
* Fix alignment error on Itanium.Martin v. Löwis2006-05-121-3/+6
* Dynamically allocate path name buffer for UnicodeMartin v. Löwis2006-05-121-17/+28
* Don't mask a no memory error with a less meaningful one as discussed on pytho...Neal Norwitz2006-05-111-3/+1
* Fix problems found by Coverity.Neal Norwitz2006-05-103-4/+8
* Add missing PyMem_Free.Martin v. Löwis2006-05-081-0/+1
* Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API.Martin v. Löwis2006-05-061-52/+193
* Clean up.Thomas Heller2006-05-051-6/+1
* Export the 'free' standard C function for use in the test suite.Thomas Heller2006-05-051-0/+5
* Drop now-unnecessary arguments to posix_2str.Martin v. Löwis2006-05-041-3/+3
* Implement os.{chdir,rename,rmdir,remove} using Win32 directly.Martin v. Löwis2006-05-041-93/+156
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-9/+0
* Fix breakage from patch 1471883 (r45800 & r45808) on OSF/1.Neal Norwitz2006-05-023-8/+8
* Work around deadlock risk. Will backport.Martin v. Löwis2006-05-011-3/+15
* Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0.Georg Brandl2006-04-301-1/+3
* Further changes for #1471883: Edit Misc/NEWS, andMartin v. Löwis2006-04-291-0/+19
* Bug #1478429: make datetime.datetime.fromtimestamp accept every float,Georg Brandl2006-04-281-0/+7
* Fix some warnings on Mac OS X 10.4Neal Norwitz2006-04-281-0/+4
* Fix build on MIPS for libffi. I haven't tested this yet because IHye-Shik Chang2006-04-263-2/+13
* Patch from Aldo Cortesi (OpenBSD buildbot owner).Neal Norwitz2006-04-261-7/+14
* Fix compiler warnings on Darwin.Thomas Heller2006-04-251-5/+5
* Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python usesThomas Wouters2006-04-251-0/+4
* Fix SF bug #1476111: SystemError in socket sendto. The AF_INET6 andThomas Wouters2006-04-251-0/+16
* SF bug/patch #1433877: string parameter to ioctl not null terminatedThomas Wouters2006-04-251-5/+10
* Updated the sqlite3 module to the external pysqlite 2.2.2 version.Gerhard Häring2006-04-2315-262/+229
* Patch 1471761 - test for broken poll at runtimeRonald Oussoren2006-04-231-17/+66
* Patch 1471925 - Weak linking support for OSXRonald Oussoren2006-04-233-2/+98