| Commit message (Expand) | Author | Age | Files | Lines |
* | Apply VISIT macro. | Raymond Hettinger | 2004-07-15 | 1 | -5/+3 |
|
|
* | Moved SunPro warning suppression into pyport.h and out of individual | Nicholas Bastin | 2004-07-15 | 2 | -8/+0 |
|
|
* | Moved PyMac_GetScript() to _localemodule, which is the only place where | Jack Jansen | 2004-07-15 | 1 | -2/+26 |
|
|
* | Exercise Jim's VISIT macro. | Raymond Hettinger | 2004-07-15 | 1 | -129/+24 |
|
|
* | Fix typo. | Hye-Shik Chang | 2004-07-15 | 1 | -1/+1 |
|
|
* | Implemented thread-local data as proposed on python-dev: | Jim Fulton | 2004-07-14 | 1 | -0/+260 |
|
|
* | [Patch #947352 from Jason Andryuk] Add support for AF_PACKET hardware addresses | Andrew M. Kuchling | 2004-07-10 | 1 | -6/+15 |
|
|
* | Change some declarations from ``char *`` to ``const char *``. Also added | Brett Cannon | 2004-07-10 | 1 | -6/+8 |
|
|
* | [Patch #909007] Enable a bunch of safe bug workarounds in OpenSSL, for compat... | Andrew M. Kuchling | 2004-07-10 | 1 | -0/+1 |
|
|
* | [Patch #945642] Fix non-blocking SSL sockets, which blocked on reads/writes i... | Andrew M. Kuchling | 2004-07-10 | 1 | -26/+60 |
|
|
* | Add comments at end of every #endif and fix ones already there when for closing | Brett Cannon | 2004-07-10 | 1 | -11/+11 |
|
|
* | [Patch #982665 ] add SO_EXCLUSIVEADDRUSE constant | Andrew M. Kuchling | 2004-07-10 | 1 | -0/+4 |
|
|
* | Add generic codecs.encode() and .decode() APIs that don't impose | Marc-André Lemburg | 2004-07-10 | 1 | -4/+72 |
|
|
* | Add an #ifdef __APPLE__ around typedef of foreachfunc to match Apple's | Brett Cannon | 2004-07-10 | 1 | -0/+4 |
|
|
* | Fix memory leak and bump the version per Greg | Neal Norwitz | 2004-07-09 | 1 | -2/+2 |
|
|
* | Cleanup support for older pythons (perhaps it should be removed?) | Neal Norwitz | 2004-07-09 | 1 | -53/+10 |
|
|
* | * balance the left/right search for getitem. | Raymond Hettinger | 2004-07-09 | 1 | -15/+13 |
|
|
* | PyThreadState_Swap(NULL) didn't do what I thought it did. Fixes | Michael W. Hudson | 2004-07-08 | 1 | -1/+1 |
|
|
* | This closes patch: | Michael W. Hudson | 2004-07-07 | 1 | -8/+89 |
|
|
* | [Bug #982806] The default argument for opening GDBM files is bogus. Patch #9... | Andrew M. Kuchling | 2004-07-07 | 1 | -1/+1 |
|
|
* | OS/2 EMX needs addrinfo.h for code included from getaddrinfo.c | Andrew MacIntyre | 2004-07-07 | 1 | -0/+4 |
|
|
* | Make weak references subclassable: | Fred Drake | 2004-07-02 | 1 | -22/+3 |
|
|
* | Adds support for DB.pget and DBCursor.pget methods. | Gregory P. Smith | 2004-06-28 | 1 | -3/+198 |
|
|
* | Add weakref support to all bsddb.db objects. | Gregory P. Smith | 2004-06-28 | 1 | -7/+127 |
|
|
* | Added socket.getservbyport(), and make its second argument and that of | Barry Warsaw | 2004-06-28 | 1 | -5/+39 |
|
|
* | raise the module minor version. | Gregory P. Smith | 2004-06-27 | 1 | -1/+1 |
|
|
* | SF patch / bug #967763 | Gregory P. Smith | 2004-06-27 | 1 | -43/+76 |
|
|
* | sizeof(char) is 1, by definition, so get rid of that expression in | Tim Peters | 2004-06-27 | 1 | -5/+4 |
|
|
* | Add a comment with implementation notes. | Raymond Hettinger | 2004-06-26 | 1 | -0/+7 |
|
|
* | Modules/getpath.c now compiles properly under OS X when using the | Brett Cannon | 2004-06-26 | 1 | -1/+1 |
|
|
* | Change comment from C++ style to C. | Brett Cannon | 2004-06-24 | 1 | -1/+1 |
|
|
* | SF patch 876130: add C API to datetime module, from Anthony Tuininga. | Tim Peters | 2004-06-20 | 1 | -0/+30 |
|
|
* | Improve the documented advice on how to best use heapq.heapreplace(). | Raymond Hettinger | 2004-06-20 | 1 | -1/+2 |
|
|
* | Use PyArg_UnpackTuple() where possible. | Raymond Hettinger | 2004-06-20 | 1 | -4/+4 |
|
|
* | Bug 975996: Add _PyTime_DoubleToTimet to C API | Tim Peters | 2004-06-20 | 2 | -12/+20 |
|
|
* | Raise ValueError when value being stored in a time_t variable will result in | Brett Cannon | 2004-06-19 | 1 | -5/+40 |
|
|
* | Fixed end-of-loop code not reached warning when using SunPro C | Nicholas Bastin | 2004-06-17 | 2 | -0/+8 |
|
|
* | silly typo | Michael W. Hudson | 2004-06-17 | 1 | -1/+1 |
|
|
* | Reverse argument order for nsmallest() and nlargest(). | Raymond Hettinger | 2004-06-15 | 1 | -2/+2 |
|
|
* | Return unicode strings from _getfullpathname even on W9X. Fixes #924703 . | Martin v. Löwis | 2004-06-15 | 1 | -0/+4 |
|
|
* | Patch #826074: cmath.log optional base argument, fixes #823209 | Raymond Hettinger | 2004-06-14 | 1 | -7/+27 |
|
|
* | SF patch #969180, hotshot incorrectly computes elapsed time by Jason | Neal Norwitz | 2004-06-13 | 1 | -5/+7 |
|
|
* | Remove warning (static not being first) when building with -W | Neal Norwitz | 2004-06-13 | 1 | -2/+2 |
|
|
* | Remove warning about implicit declaration of strcmp() | Neal Norwitz | 2004-06-13 | 1 | -0/+1 |
|
|
* | Fixup error exits in nlargest() and nsmallest(). | Raymond Hettinger | 2004-06-13 | 1 | -8/+16 |
|
|
* | Install C version of heapq.nsmallest(). | Raymond Hettinger | 2004-06-13 | 1 | -5/+162 |
|
|
* | Install C version of heapq.nlargest(). | Raymond Hettinger | 2004-06-12 | 1 | -0/+76 |
|
|
* | Ensure path is initialized to prevent freeing random memory | Neal Norwitz | 2004-06-09 | 1 | -4/+2 |
|
|
* | Patch #774665: Make Python LC_NUMERIC agnostic. | Martin v. Löwis | 2004-06-08 | 3 | -66/+9 |
|
|
* | SF 952807: Unpickling pickled instances of subclasses of datetime.date, | Tim Peters | 2004-06-07 | 1 | -6/+3 |
|
|