summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Repair MS compiler warning about signed-vs-unsigned mismatch. The planeTim Peters2004-07-181-2/+2
* Added a comment explaining the extern ugliness.Tim Peters2004-07-181-0/+6
* Changed the "predefinitions" of codec_list and mapping_list from staticTim Peters2004-07-181-2/+2
* Bring CJKCodecs 1.1 into trunk. This completely reorganizes sourceHye-Shik Chang2004-07-1868-40197/+34075
* Apply VISIT macro.Raymond Hettinger2004-07-151-5/+3
* Moved SunPro warning suppression into pyport.h and out of individualNicholas Bastin2004-07-152-8/+0
* Moved PyMac_GetScript() to _localemodule, which is the only place whereJack Jansen2004-07-151-2/+26
* Exercise Jim's VISIT macro.Raymond Hettinger2004-07-151-129/+24
* Fix typo.Hye-Shik Chang2004-07-151-1/+1
* Implemented thread-local data as proposed on python-dev:Jim Fulton2004-07-141-0/+260
* [Patch #947352 from Jason Andryuk] Add support for AF_PACKET hardware addressesAndrew M. Kuchling2004-07-101-6/+15
* Change some declarations from ``char *`` to ``const char *``. Also addedBrett Cannon2004-07-101-6/+8
* [Patch #909007] Enable a bunch of safe bug workarounds in OpenSSL, for compat...Andrew M. Kuchling2004-07-101-0/+1
* [Patch #945642] Fix non-blocking SSL sockets, which blocked on reads/writes i...Andrew M. Kuchling2004-07-101-26/+60
* Add comments at end of every #endif and fix ones already there when for closingBrett Cannon2004-07-101-11/+11
* [Patch #982665 ] add SO_EXCLUSIVEADDRUSE constantAndrew M. Kuchling2004-07-101-0/+4
* Add generic codecs.encode() and .decode() APIs that don't imposeMarc-André Lemburg2004-07-101-4/+72
* Add an #ifdef __APPLE__ around typedef of foreachfunc to match Apple'sBrett Cannon2004-07-101-0/+4
* Fix memory leak and bump the version per GregNeal Norwitz2004-07-091-2/+2
* Cleanup support for older pythons (perhaps it should be removed?)Neal Norwitz2004-07-091-53/+10
* * balance the left/right search for getitem.Raymond Hettinger2004-07-091-15/+13
* PyThreadState_Swap(NULL) didn't do what I thought it did. FixesMichael W. Hudson2004-07-081-1/+1
* This closes patch:Michael W. Hudson2004-07-071-8/+89
* [Bug #982806] The default argument for opening GDBM files is bogus. Patch #9...Andrew M. Kuchling2004-07-071-1/+1
* OS/2 EMX needs addrinfo.h for code included from getaddrinfo.cAndrew MacIntyre2004-07-071-0/+4
* Make weak references subclassable:Fred Drake2004-07-021-22/+3
* Adds support for DB.pget and DBCursor.pget methods.Gregory P. Smith2004-06-281-3/+198
* Add weakref support to all bsddb.db objects.Gregory P. Smith2004-06-281-7/+127
* Added socket.getservbyport(), and make its second argument and that ofBarry Warsaw2004-06-281-5/+39
* raise the module minor version.Gregory P. Smith2004-06-271-1/+1
* SF patch / bug #967763Gregory P. Smith2004-06-271-43/+76
* sizeof(char) is 1, by definition, so get rid of that expression inTim Peters2004-06-271-5/+4
* Add a comment with implementation notes.Raymond Hettinger2004-06-261-0/+7
* Modules/getpath.c now compiles properly under OS X when using theBrett Cannon2004-06-261-1/+1
* Change comment from C++ style to C.Brett Cannon2004-06-241-1/+1
* SF patch 876130: add C API to datetime module, from Anthony Tuininga.Tim Peters2004-06-201-0/+30
* Improve the documented advice on how to best use heapq.heapreplace().Raymond Hettinger2004-06-201-1/+2
* Use PyArg_UnpackTuple() where possible.Raymond Hettinger2004-06-201-4/+4
* Bug 975996: Add _PyTime_DoubleToTimet to C APITim Peters2004-06-202-12/+20
* Raise ValueError when value being stored in a time_t variable will result inBrett Cannon2004-06-191-5/+40
* Fixed end-of-loop code not reached warning when using SunPro CNicholas Bastin2004-06-172-0/+8
* silly typoMichael W. Hudson2004-06-171-1/+1
* Reverse argument order for nsmallest() and nlargest().Raymond Hettinger2004-06-151-2/+2
* Return unicode strings from _getfullpathname even on W9X. Fixes #924703 .Martin v. Löwis2004-06-151-0/+4
* Patch #826074: cmath.log optional base argument, fixes #823209Raymond Hettinger2004-06-141-7/+27
* SF patch #969180, hotshot incorrectly computes elapsed time by JasonNeal Norwitz2004-06-131-5/+7
* Remove warning (static not being first) when building with -WNeal Norwitz2004-06-131-2/+2
* Remove warning about implicit declaration of strcmp()Neal Norwitz2004-06-131-0/+1
* Fixup error exits in nlargest() and nsmallest().Raymond Hettinger2004-06-131-8/+16
* Install C version of heapq.nsmallest().Raymond Hettinger2004-06-131-5/+162