| Commit message (Expand) | Author | Age | Files | Lines |
* | add constants for many error values added over the past couple of | Fred Drake | 2004-08-04 | 1 | -0/+17 |
|
|
* | Add a missing decref -- PyErr_SetObject increfs the 'object'! | Michael W. Hudson | 2004-08-04 | 1 | -0/+1 |
|
|
* | Fix a leak of a reference on None. | Michael W. Hudson | 2004-08-04 | 1 | -3/+1 |
|
|
* | SF #989185: Drop unicode.iswide() and unicode.width() and add | Hye-Shik Chang | 2004-08-04 | 2 | -1091/+1293 |
|
|
* | Tkapp_New(): Rewrite in C so it compiles again. | Tim Peters | 2004-08-04 | 1 | -1/+4 |
|
|
* | Patch #986929: Add support for wish -sync and -use options. | Martin v. Löwis | 2004-08-03 | 1 | -4/+37 |
|
|
* | allow ctime(), gmtime(), and localtime() to take None as equivalent to an omi... | Fred Drake | 2004-08-03 | 1 | -9/+30 |
|
|
* | Patch #977074: Move Encode/Decode to the top so gcc can inline them. | Martin v. Löwis | 2004-08-03 | 1 | -34/+33 |
|
|
* | Fix the reference count errors revealed by the test suite... | Michael W. Hudson | 2004-08-03 | 1 | -1/+3 |
|
|
* | Restore compilation on MSVC++ 6.0 | Raymond Hettinger | 2004-08-03 | 1 | -0/+4 |
|
|
* | SF bug #808756: refleaks in _hotshot.c. | Armin Rigo | 2004-08-03 | 1 | -2/+10 |
|
|
* | update to Expat 1.95.8 | Fred Drake | 2004-08-03 | 7 | -361/+789 |
|
|
* | Fix [ 1001018 ]: Windows: setdefaulttimeout causes unnecessary timeouts on | Mark Hammond | 2004-08-03 | 1 | -3/+24 |
|
|
* | Any call to insort_{left,right} with a non-list leaked a reference to None | Michael W. Hudson | 2004-08-02 | 1 | -6/+10 |
|
|
* | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 1 | -9/+62 |
|
|
* | SF bug #999776, zlib home page wrong | Neal Norwitz | 2004-07-29 | 1 | -1/+1 |
|
|
* | Remove CJKCodecs implementation of UTF-7 and UTF-8 codec which | Hye-Shik Chang | 2004-07-28 | 1 | -560/+0 |
|
|
* | Switch arguments to memset (kudos to MSVC C4318 for finding that) | Martin v. Löwis | 2004-07-27 | 1 | -2/+2 |
|
|
* | Patch #995766: Keyword argument support in cPickle. | Martin v. Löwis | 2004-07-27 | 1 | -15/+21 |
|
|
* | This change implements the following gettext features, as | Gustavo Niemeyer | 2004-07-22 | 1 | -0/+22 |
|
|
* | Fix SF #994580, typo in time.tzsets docstring. Backport candidate | Neal Norwitz | 2004-07-20 | 1 | -1/+1 |
|
|
* | Patch #984654: Add more address family constants. | Martin v. Löwis | 2004-07-19 | 1 | -0/+60 |
|
|
* | Patch #993173: Enable audioop on 64-bit platforms. | Martin v. Löwis | 2004-07-19 | 1 | -0/+1 |
|
|
* | Silence a GCC unused variable warning in debug builds. | Raymond Hettinger | 2004-07-19 | 1 | -2/+1 |
|
|
* | Replace an extern magic to assigning declared pointer from array's. | Hye-Shik Chang | 2004-07-18 | 1 | -26/+12 |
|
|
* | Remove unused CNS-11643 mapping which shouldn't merged into main Python | Hye-Shik Chang | 2004-07-18 | 1 | -11864/+0 |
|
|
* | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 1 | -391/+391 |
|
|
* | Repair MS compiler warning about signed-vs-unsigned mismatch. The plane | Tim Peters | 2004-07-18 | 1 | -2/+2 |
|
|
* | Added a comment explaining the extern ugliness. | Tim Peters | 2004-07-18 | 1 | -0/+6 |
|
|
* | Changed the "predefinitions" of codec_list and mapping_list from static | Tim Peters | 2004-07-18 | 1 | -2/+2 |
|
|
* | Bring CJKCodecs 1.1 into trunk. This completely reorganizes source | Hye-Shik Chang | 2004-07-18 | 68 | -40197/+34075 |
|
|
* | 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 |
|
|