summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Move the conex_finally label up, so that the errno value is alwaysGuido van Rossum2002-06-071-1/+1
* I decided to change the interaction between setblocking() andGuido van Rossum2002-06-071-5/+2
* Major cleanup. Renamed static methods to avoid Py prefix. Other miscGuido van Rossum2002-06-071-296/+290
* Repair a comment.Guido van Rossum2002-06-071-1/+1
* Whitespace normalization, folding long lines, uniform commentGuido van Rossum2002-06-071-224/+229
* Correct several blunders in the timeout code, mostly my own fault (forGuido van Rossum2002-06-071-14/+12
* Remove casts to PyObject * when declaration is for PyObject *Jeremy Hylton2002-06-061-3/+3
* SF patch 555085 (timeout socket implementation) by Michael Gilfix.Guido van Rossum2002-06-062-54/+423
* The insint() function is not used. Nuke it.Guido van Rossum2002-06-061-15/+0
* The tp_new implementation should initialize the errorhandler field,Guido van Rossum2002-06-061-1/+3
* Fix SF bug #557436, TclError is a str should be an ExceptionNeal Norwitz2002-06-041-1/+1
* Remove unused static functionNeal Norwitz2002-05-311-19/+0
* SF #558432: Prevent Annoying ' ' from readline (Holker Krekel).Guido van Rossum2002-05-301-0/+1
* The logreader object did not always refill the input buffer correctlyNeil Schemenauer2002-05-291-105/+56
* Issue an explicit error when we can't find an appropriate type forGuido van Rossum2002-05-291-0/+2
* This is patchMichael W. Hudson2002-05-291-7/+3
* This is patchMichael W. Hudson2002-05-271-0/+171
* Disambiguate the grammar for backtick.Guido van Rossum2002-05-241-1/+13
* Whitespace normalization.Tim Peters2002-05-231-7/+7
* Add IS_TRACKED and IS_MOVED macros. This makes the logic a little more clear.Neil Schemenauer2002-05-211-7/+10
* array_tounicode isn't defined in --disable-unicode builds...Michael W. Hudson2002-05-131-0/+4
* Added degrees() and radians() to mathmodule. Closes patch 552452 andRaymond Hettinger2002-05-131-0/+27
* Patch #551011: Fix compilation problems with Cygwin.Martin v. Löwis2002-05-081-1/+1
* Rename posix_WCONTINUED to posix_WIFCONTINUED, call WIFCONTINUED inside,Martin v. Löwis2002-05-041-2/+5
* Move all data for a single generation into a structure. The set ofNeil Schemenauer2002-05-041-73/+97
* Indicate delayed initialization of slots. Suggested by tim.one.Martin v. Löwis2002-05-021-3/+5
* Patch #551009: Initialize array type dynamically.Martin v. Löwis2002-05-021-3/+6
* Guard gettext and friends with HAVE_LIBINTL_H. Fixes #549907.Martin v. Löwis2002-05-021-1/+1
* Pickler_clear_memo(): convert to METH_NOARGS.Fred Drake2002-05-011-5/+2
* See discussion at SF bug 547537.Guido van Rossum2002-04-291-1/+1
* _PyObject_GC_New: Could call PyObject_INIT with a NULL 1st argument.Tim Peters2002-04-281-2/+6
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-279-55/+23
* Check for overflow errors in setrlimit(),Jeremy Hylton2002-04-231-1/+10
* WCOREDUMP(), WIFCONTINUED(), WCONTINUED, WUNTRACED: New.Fred Drake2002-04-231-11/+75
* SF patch [ 545523 ] patch for 514433 bsddb.dbopen (NULL)Anthony Baxter2002-04-231-3/+3
* #546156, Remove load_false()/load_true(), they are not usedNeal Norwitz2002-04-211-14/+0
* #544265, Remove warnings for passing const to free()Neal Norwitz2002-04-211-1/+1
* #546163, fix link problem on Solaris 8 for makedev when using mknodNeal Norwitz2002-04-201-0/+3
* Forward port of patch # 500311: Work around for buggy https servers.Martin v. Löwis2002-04-201-24/+72
* Patch #546194: Check constants individually. Fixes 534143 on OpenBSD.Martin v. Löwis2002-04-191-2/+19
* #546155, remove posix_int() it is not usedNeal Norwitz2002-04-191-16/+0
* Fix SF #544995 (zlib crash on second flush call)Jeremy Hylton2002-04-191-0/+1
* Document the build process more precisely. Suggested by Hugh Sasse.Martin v. Löwis2002-04-191-3/+15
* posix_fildes(): New helper: run a function that takes a file descriptorFred Drake2002-04-151-52/+71
* Remove unused variable reported by Walter DörwaldNeal Norwitz2002-04-151-1/+1
* Patch #543447: Add posix.mknod.Martin v. Löwis2002-04-141-4/+40
* initpwd(): Clean up initialization, avoid PyModule_GetDict().Fred Drake2002-04-131-4/+4
* First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz withTim Peters2002-04-121-2/+5
* PyObject_Del can now be used as a function designator.Neil Schemenauer2002-04-122-2/+2
* Allow PyObject_Del to be used as a function designator. Provide binaryNeil Schemenauer2002-04-121-14/+39