summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-1954-329/+329
* Merged revisions 59541-59561 via svnmerge fromChristian Heimes2007-12-193-6/+27
* Merged revisions 59488-59511 via svnmerge fromChristian Heimes2007-12-154-5/+5
* update to fix leak in SSL codeBill Janssen2007-12-141-16/+41
* Merged revisions 59465-59487 via svnmerge fromChristian Heimes2007-12-144-5/+16
* Merged revisions 59450-59464 via svnmerge fromChristian Heimes2007-12-111-5/+26
* Minor cleanup in the gc module.Amaury Forgeot d'Arc2007-12-101-15/+3
* Reverting revision 59394. We'll sort this out later.Guido van Rossum2007-12-061-59/+12
* Fix the leaks in test_ssl. Issue 1469. Patch by Christian Heimes:Guido van Rossum2007-12-061-12/+59
* Fixed problem with missing PyInt_CheckExact() macro in _ctypes.cChristian Heimes2007-12-051-4/+9
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-046-14/+47
* Merged revisions 59304-59312 via svnmerge fromGuido van Rossum2007-12-041-2/+5
* Merged revisions 59275-59303 via svnmerge fromChristian Heimes2007-12-032-12/+16
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-0263-578/+578
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-023-5/+5
* Marc-Andre Lemburg has found the culprit of the problem in r57142.Christian Heimes2007-11-301-1/+1
* Merged revisions 59239-59244 via svnmerge fromChristian Heimes2007-11-301-0/+83
* Fixed bug #1505 Changes to PyMethod_New breaks ctypes on WindowsChristian Heimes2007-11-281-50/+63
* Fixed #1508 Removal of stale code in _csv.c / pyexpat.cChristian Heimes2007-11-282-58/+0
* Rewrap error message.Georg Brandl2007-11-271-3/+4
* Merged revisions 59187-59192 via svnmerge fromChristian Heimes2007-11-271-15/+0
* The changes to PyMethod_New and the removal of unbound methods breaks ctypes'...Christian Heimes2007-11-271-4/+5
* Merged revisions 59107-59186 via svnmerge fromGuido van Rossum2007-11-261-0/+4
* #1479: Fix refleak in csv module (from rev 59062).Georg Brandl2007-11-251-6/+5
* #1480: fix refleak in the sqlite module.Georg Brandl2007-11-251-4/+5
* Stream functions like read() are supposed to return bytes, not buffer.Amaury Forgeot d'Arc2007-11-221-17/+9
* Use PyString instead of PyBytes in wrap_strftime().Walter Dörwald2007-11-221-10/+10
* os.environ contains PyUnicode instances and not PyString instancesChristian Heimes2007-11-221-3/+3
* Removed some leftovers from the str8 daysChristian Heimes2007-11-221-1/+1
* In audioop, return PyString instead of PyBytes.Amaury Forgeot d'Arc2007-11-221-31/+31
* Merged revisions 59077-59104 via svnmerge fromGuido van Rossum2007-11-221-2/+3
* Convert the socket module to insist on bytes for input, and to return bytesGuido van Rossum2007-11-211-30/+25
* More PyBytes -> PyString.Guido van Rossum2007-11-211-4/+4
* Make os.read() return bytes, not bytearray.Guido van Rossum2007-11-211-3/+3
* Return PyString, not PyBytes, for a bytes array.Guido van Rossum2007-11-211-25/+25
* Make read() and certificate() return bytes instead of bytearray instances.Guido van Rossum2007-11-211-31/+23
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-18/+18
* Fixed bug #1020 pyexpat.XMParserType broken (was: pydoc doesn't work on pyexpat)Christian Heimes2007-11-211-1/+2
* Merged revisions 59056-59076 via svnmerge fromChristian Heimes2007-11-201-6/+13
* The patch from weck does a better job than my original idea. Thanks!Christian Heimes2007-11-201-4/+2
* os.system: on Windows, avoid encoding the command and use the "wide" function...Amaury Forgeot d'Arc2007-11-201-1/+11
* Correct test_cvs on Windows, as suggested by Raghuram DevarakondaAmaury Forgeot d'Arc2007-11-191-1/+11
* Issue1395: Universal mode used to duplicate newlines when using read(1).Amaury Forgeot d'Arc2007-11-191-1/+1
* Make test_cmd_line_scripts pass by using a unicode string instead ofGuido van Rossum2007-11-191-14/+16
* I'm using the xxmodule and xxsubtype to test the msvccompiler on Windows. I'm...Christian Heimes2007-11-181-2/+5
* Merged revisions 59005-59040 via svnmerge fromChristian Heimes2007-11-181-40/+80
* This is roughly socket2.diff from issue 1378, with a few changes appliedGuido van Rossum2007-11-161-61/+71
* Merged revisions 58947-59004 via svnmerge fromGuido van Rossum2007-11-162-182/+92
* Fix for VS 2008Christian Heimes2007-11-151-0/+6
* get SSL support to work againBill Janssen2007-11-151-130/+198