| Commit message (Expand) | Author | Age | Files | Lines |
* | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 51 | -59/+68 |
|
|
* | - Get _environ through the NSEnviron call in a MacOSX framework. This allows | Jack Jansen | 2002-08-01 | 1 | -2/+11 |
|
|
* | Cray fixup as seen in bug #558153. | Michael W. Hudson | 2002-07-31 | 1 | -2/+2 |
|
|
* | Revert changes to use PyArg_Parse(), so any sequence will continue to work --... | Neal Norwitz | 2002-07-30 | 1 | -1/+1 |
|
|
* | Use PyArg_ParseTuple() instead of PyArg_Parse() which is deprecated | Neal Norwitz | 2002-07-30 | 1 | -1/+1 |
|
|
* | Fix docstring to be consistent with parameter name (prefix) | Neal Norwitz | 2002-07-30 | 1 | -1/+1 |
|
|
* | SF patch #584245, get python to link on OSF1 (Dec Unix) | Neal Norwitz | 2002-07-30 | 1 | -2/+2 |
|
|
* | Fix for | Michael W. Hudson | 2002-07-29 | 1 | -6/+7 |
|
|
* | Patch #573770: Implement lchown. | Martin v. Löwis | 2002-07-28 | 1 | -0/+30 |
|
|
* | Pass length of result structure into setipaddr. Fixes bug #565747. | Martin v. Löwis | 2002-07-28 | 1 | -8/+12 |
|
|
* | SF patch #577031, remove PyArg_NoArgs() since it's deprecated | Neal Norwitz | 2002-07-28 | 1 | -439/+437 |
|
|
* | SF patch #577031, remove PyArg_Parse() since it's deprecated | Neal Norwitz | 2002-07-28 | 1 | -2/+14 |
|
|
* | Fix last checkin, can't use " inside a string | Neal Norwitz | 2002-07-28 | 1 | -1/+1 |
|
|
* | Patch #552812: Better description in "python -h" for -u. | Martin v. Löwis | 2002-07-28 | 1 | -0/+1 |
|
|
* | Patch #575827: allow threads inside SSL creation. | Martin v. Löwis | 2002-07-28 | 1 | -4/+19 |
|
|
* | Put checks for error returns in the right place. | Jeremy Hylton | 2002-07-25 | 1 | -2/+8 |
|
|
* | Extended socket.htonl and ntohl to accept longs. | Jeremy Hylton | 2002-07-25 | 1 | -15/+53 |
|
|
* | Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link | Mark Hammond | 2002-07-23 | 9 | -10/+10 |
|
|
* | unpack_string(): avoid a compiler warning (about a real bug!) by | Guido van Rossum | 2002-07-20 | 1 | -1/+4 |
|
|
* | Return NULL instead of 0 from function with a pointer return value. | Fred Drake | 2002-07-19 | 1 | -1/+1 |
|
|
* | Patch to call the Pure python strptime implementation if there's no | Guido van Rossum | 2002-07-19 | 1 | -3/+18 |
|
|
* | Bail out early from internal_select() when socket file descriptor | Guido van Rossum | 2002-07-19 | 1 | -0/+5 |
|
|
* | Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. | Mark Hammond | 2002-07-19 | 2 | -5/+3 |
|
|
* | A Python float is a C double; redeclare defaulttimeout as such; stops | Tim Peters | 2002-07-18 | 1 | -1/+1 |
|
|
* | Silence warning about getdefaulttimeout in PyMethodDef. | Guido van Rossum | 2002-07-18 | 1 | -1/+1 |
|
|
* | Fix indentation. | Jeremy Hylton | 2002-07-18 | 1 | -5/+5 |
|
|
* | - When the log reader detects end-of-file, close the file. | Fred Drake | 2002-07-18 | 1 | -45/+84 |
|
|
* | Add default timeout functionality. This adds setdefaulttimeout() and | Guido van Rossum | 2002-07-18 | 1 | -1/+65 |
|
|
* | Mark the closed attribute of the profiler with PyDoc_STR(), and added | Fred Drake | 2002-07-17 | 1 | -2/+3 |
|
|
* | Added a docstring for the closed attribute. | Fred Drake | 2002-07-17 | 1 | -4/+9 |
|
|
* | Removed more stray instances of statichere, but left _sre.c alone. | Tim Peters | 2002-07-17 | 7 | -8/+8 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 29 | -57/+52 |
|
|
* | Some modernization. Get rid of the redundant next() method. Always | Guido van Rossum | 2002-07-17 | 1 | -66/+37 |
|
|
* | Remove RCSId; this produces annoying warnings. | Fred Drake | 2002-07-17 | 1 | -3/+0 |
|
|
* | Wipe out some warnings about non-ANSI code and an unsafe arg to | Guido van Rossum | 2002-07-17 | 1 | -7/+4 |
|
|
* | Given the persistent id code a shot at a class before calling save_global(). | Jeremy Hylton | 2002-07-16 | 1 | -5/+5 |
|
|
* | Fix bug 581232 - [Windows] Can not interrupt time.sleep() | Mark Hammond | 2002-07-16 | 1 | -3/+46 |
|
|
* | /F revealed that ShellExecute() only requires shellapi.h, not the | Tim Peters | 2002-07-15 | 1 | -1/+2 |
|
|
* | Fix bug 231273 - [windows] os.popen doens't kill subprocess when interrupted | Mark Hammond | 2002-07-14 | 1 | -1/+1 |
|
|
* | WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very few | Tim Peters | 2002-07-14 | 2 | -2/+2 |
|
|
* | remove decl of unused variable | Jeremy Hylton | 2002-07-11 | 1 | -1/+1 |
|
|
* | Do more robust test of whether global objects are accessible. | Jeremy Hylton | 2002-07-11 | 1 | -4/+3 |
|
|
* | Trashcan cleanup: Now that cyclic gc is always there, the trashcan | Tim Peters | 2002-07-07 | 1 | -0/+3 |
|
|
* | Removed WITH_CYCLE_GC #ifdef-ery. Holes: | Tim Peters | 2002-07-07 | 2 | -25/+0 |
|
|
* | gc_list_move defined but not used. | Michael W. Hudson | 2002-07-04 | 1 | -15/+0 |
|
|
* | Another stab at SF 576327: zipfile when sizeof(long) == 8 | Tim Peters | 2002-07-02 | 1 | -100/+106 |
|
|
* | visit_decref(): Added another assert. | Tim Peters | 2002-07-02 | 1 | -0/+1 |
|
|
* | Fix for SF bug #576327: zipfile when sizeof(long) == 8 | Tim Peters | 2002-07-02 | 1 | -1/+11 |
|
|
* | Repair badly formatted code. | Jeremy Hylton | 2002-07-02 | 1 | -19/+17 |
|
|
* | Finished transitioning to using gc_refs to track gc objects' states. | Tim Peters | 2002-07-02 | 1 | -39/+66 |
|
|