summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Server-side SSL and certificate validation, by Bill Janssen.Guido van Rossum2007-08-251-91/+386
* Fix bug 1764407 - the -i switch now does the right thing when using the -m sw...Nick Coghlan2007-08-251-5/+4
* Add cheot-ga-keut composed make-up sequence support in EUC-KR codec.Hye-Shik Chang2007-08-201-7/+104
* Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.Walter Dörwald2007-08-171-0/+204
* Fix memory leak in os.readlinkNeal Norwitz2007-08-121-2/+6
* Backport r56875 from py3k; double LEAVE_PYTHON when AsString() failsGuido van Rossum2007-08-091-1/+3
* Fix compilation warning.Georg Brandl2007-08-081-1/+1
* Revert the fix for #1548891, it broke backwards compatibility with arbitrary ...Georg Brandl2007-08-081-2/+5
* Fix gb18030 codec's bug that doesn't map two-byte characters onHye-Shik Chang2007-08-041-0/+1
* Bug #1704793: Return UTF-16 pair if unicodedata.lookup cannotMartin v. Löwis2007-07-281-16/+11
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-2159-548/+440
* Document that codecs.lookup() returns a CodecInfo object.Walter Dörwald2007-07-191-4/+5
* PyType_stgdict() returns a borrowed reference which must not beThomas Heller2007-07-131-2/+0
* Fix for SF# 1649098: avoid zero-sized array declaration in structure.Thomas Heller2007-07-132-2/+2
* Repair COMError. Since exceptions are new style classes now, settingThomas Heller2007-07-131-7/+13
* Many calls to tk.call involve an arglist containing a single tuple.Kurt B. Kaiser2007-07-051-0/+6
* Use "O&" in calls to PyArg_Parse when we need a 'void*' instead of "k"Thomas Heller2007-06-112-13/+17
* Patch #1733960: Allow T_LONGLONG to accept ints.Martin v. Löwis2007-06-091-3/+27
* Fix warnings by using proper function prototype.Thomas Heller2007-06-082-8/+8
* Fix gcc warnings intruduced by passing Py_ssize_t to PyErr_Format calls.Thomas Heller2007-06-083-11/+24
* [ 1715718 ] x64 clean compile patch for _ctypes, by Kristj?n ValurThomas Heller2007-06-086-142/+158
* Fixing changes to getbuildinfo.c that broke linux buildsKristján Valur Jónsson2007-06-071-2/+9
* Patch by Tim Delany (missing DECREF). SF #1731330.Guido van Rossum2007-06-051-0/+1
* Bug #1728403: Fix a bug that CJKCodecs StreamReader hangs when itHye-Shik Chang2007-06-051-1/+5
* Fix build on FreeBSD. Bluetooth HCI API in FreeBSD is quite differentHye-Shik Chang2007-06-051-2/+5
* Backout the original 'fix' to 1721309 which had no effect.Neal Norwitz2007-06-031-5/+9
* Fix compiler warnings.Thomas Heller2007-05-301-2/+2
* Add -3 option to the interpreter to warn about features that areNeal Norwitz2007-05-231-1/+6
* Stop using METH_OLDARGS implicitlyNeal Norwitz2007-05-223-12/+12
* Stop using METH_OLDARGSNeal Norwitz2007-05-221-3/+3
* Remove the rgbimg module. It has been deprecated since Python 2.5.Brett Cannon2007-05-202-781/+0
* Whoops, need to pay attention to those test failures.Neal Norwitz2007-05-191-1/+1
* Clear data so random memory does not get freed. Will backport.Neal Norwitz2007-05-191-0/+1
* Backport checkin:Walter Dörwald2007-05-091-1/+1
* Do not truncate 64-bit pointers to 32-bit integers.Thomas Heller2007-05-042-13/+19
* On 64-bit Windows, ffi_arg must be 8 bytes long. This fixes theThomas Heller2007-05-041-0/+4
* Fix problems in x64 build that were discovered by the testsuite:Kristján Valur Jónsson2007-05-032-3/+2
* Don't truncate pointers to integers (on win64 platform).Thomas Heller2007-05-031-2/+21
* Stop using PyMem_FREE while the GIL is not held. For details see:Neal Norwitz2007-05-021-1/+1
* When accessing the .value attribute of a c_wchar_p instance, and theThomas Heller2007-04-301-3/+11
* Make sure to call PyErr_NoMemory() in several places whereThomas Heller2007-04-303-3/+15
* Complete revamp of PCBuild8 directory. Use subdirectories for each project u...Kristján Valur Jónsson2007-04-302-7/+6
* Accomodate 64 bit time_t in the _bsddb module.Kristján Valur Jónsson2007-04-261-1/+21
* Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode()...Kristján Valur Jónsson2007-04-261-6/+14
* Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typ...Kristján Valur Jónsson2007-04-251-2/+2
* Merge change 54909 from release25-maint: Fix several minor issues discovered...Kristján Valur Jónsson2007-04-254-16/+31
* SF #1703270, add missing declaration in readline.c to avoid compiler warning.Neal Norwitz2007-04-191-1/+3
* Point readers at the patch submission instructionsAndrew M. Kuchling2007-04-111-3/+6
* Add window.chgat() method, submitted via e-mail by Fabian KreutzAndrew M. Kuchling2007-04-111-4/+55
* Bug #1563759: struct.unpack doens't support buffer protocol objectsRaymond Hettinger2007-04-051-7/+25