summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Remove defunct parts of the random moduleRaymond Hettinger2008-01-131-69/+0
* Merged revisions 59921-59932 via svnmerge fromChristian Heimes2008-01-121-1/+6
* Merged revisions 59883-59920 via svnmerge fromChristian Heimes2008-01-112-3/+8
* Merged revisions 59864-59882 via svnmerge fromChristian Heimes2008-01-101-4/+9
* Merged revisions 59843-59863 via svnmerge fromChristian Heimes2008-01-095-27/+133
* Merged revisions 59822-59841 via svnmerge fromChristian Heimes2008-01-071-3/+11
* Copied doc for reload() from trunk's function.rst to imp.rstChristian Heimes2008-01-072-1/+157
* Merged revisions 59703-59773 via svnmerge fromChristian Heimes2008-01-063-2/+44
* Make math.floor and math.ceil return ints instead of floats.Jeffrey Yasskin2008-01-051-6/+19
* Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful ...Christian Heimes2008-01-043-0/+3
* Merged revisions 59680-59695 via svnmerge fromChristian Heimes2008-01-043-12/+249
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-0311-21/+60
* Merged revisions 59642-59665 via svnmerge fromChristian Heimes2008-01-021-4/+4
* Merged revisions 59595-59604 via svnmerge fromChristian Heimes2007-12-281-2/+3
* Merged revisions 59565-59594 via svnmerge fromChristian Heimes2007-12-241-1/+52
* #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