| Commit message (Expand) | Author | Age | Files | Lines |
* | Backport rev 51820 from Thomas Heller | Neal Norwitz | 2006-09-11 | 1 | -2/+2 |
|
|
* | Backport rev 51819 from Thomas Heller | Neal Norwitz | 2006-09-11 | 1 | -2/+2 |
|
|
* | Backport from trunk r51737: | Hye-Shik Chang | 2006-09-07 | 3 | -28/+39 |
|
|
* | Backport of r51379 from trunk: | Thomas Heller | 2006-09-06 | 1 | -0/+16 |
|
|
* | Bug #1551427: fix a wrong NULL pointer check in the win32 version | Georg Brandl | 2006-09-06 | 1 | -1/+1 |
|
|
* | Backport fix from 51683. | Neal Norwitz | 2006-09-05 | 1 | -0/+4 |
|
|
* | Backport fix for SF bug #1550714, itertools.tee raises SystemError | Neal Norwitz | 2006-09-05 | 1 | -2/+6 |
|
|
* | Alexander Belopolsky pointed out that pos is a size_t | Neal Norwitz | 2006-08-22 | 1 | -1/+1 |
|
|
* | Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev | Neal Norwitz | 2006-08-21 | 1 | -1/+1 |
|
|
* | Move assert to after NULL check, otherwise we deref NULL in the assert. | Neal Norwitz | 2006-08-19 | 1 | -1/+1 |
|
|
* | SF#1534630 | Fredrik Lundh | 2006-08-16 | 1 | -1/+5 |
|
|
* | Remove the special casing of Py_None when converting the return value | Thomas Heller | 2006-08-16 | 1 | -1/+1 |
|
|
* | The __repr__ method of a NULL py_object does no longer raise an | Thomas Heller | 2006-08-16 | 1 | -1/+1 |
|
|
* | Add commented assert statements to check that the result of | Thomas Heller | 2006-08-16 | 1 | -20/+36 |
|
|
* | Check for NULL return value from new_CArgObject calls. | Thomas Heller | 2006-08-15 | 1 | -0/+6 |
|
|
* | Patch #1511317: don't crash on invalid hostname info | Georg Brandl | 2006-08-14 | 1 | -11/+14 |
|
|
* | Patch #1535500: fix segfault in BZ2File.writelines and make sure it | Georg Brandl | 2006-08-14 | 1 | -2/+17 |
|
|
* | Patch #1536908: Add support for AMD64 / OpenBSD. | Thomas Heller | 2006-08-14 | 3 | -3/+2 |
|
|
* | Apply the patch #1532975 plus ideas from the patch #1533481. | Thomas Heller | 2006-08-14 | 3 | -162/+182 |
|
|
* | Revert the change that tries to zero out a closure's result storage | Thomas Heller | 2006-08-14 | 1 | -15/+5 |
|
|
* | Check for NULL return value of GenericCData_new(). | Thomas Heller | 2006-08-14 | 1 | -0/+4 |
|
|
* | Check for NULL return value from new_CArgObject(). | Thomas Heller | 2006-08-14 | 1 | -0/+6 |
|
|
* | Remove unused, buggy test function. | Thomas Heller | 2006-08-14 | 1 | -12/+0 |
|
|
* | Get rid of compiler warning | Neal Norwitz | 2006-08-13 | 1 | -2/+2 |
|
|
* | Handle alloca failures. | Neal Norwitz | 2006-08-13 | 2 | -0/+15 |
|
|
* | Really address the issue of where to place the assert for leftblock. | Neal Norwitz | 2006-08-13 | 1 | -1/+1 |
|
|
* | Handle failure from PyModule_GetDict() (Klocwork 208). | Neal Norwitz | 2006-08-13 | 1 | -9/+15 |
|
|
* | Handle failures from lookup. | Neal Norwitz | 2006-08-13 | 1 | -0/+4 |
|
|
* | It's very unlikely, though possible that source is not a string. Verify | Neal Norwitz | 2006-08-13 | 1 | -0/+3 |
|
|
* | Handle malloc and fopen failures more gracefully. | Neal Norwitz | 2006-08-13 | 1 | -2/+8 |
|
|
* | Check return result of PyModule_GetDict(). | Neal Norwitz | 2006-08-13 | 1 | -22/+24 |
|
|
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 3 | -40/+14 |
|
|
* | Verify verdat which is returned from malloc is not NULL. | Neal Norwitz | 2006-08-12 | 1 | -4/+13 |
|
|
* | Don't deref v if it's NULL. | Neal Norwitz | 2006-08-12 | 1 | -2/+4 |
|
|
* | Check returned pointer is valid. | Neal Norwitz | 2006-08-12 | 1 | -0/+6 |
|
|
* | I'm not sure why this code allocates this string for the error message. | Neal Norwitz | 2006-08-12 | 1 | -2/+11 |
|
|
* | Try to handle a malloc failure. I'm not entirely sure this is correct. | Neal Norwitz | 2006-08-12 | 1 | -0/+3 |
|
|
* | Move the assert which checks for a NULL pointer first. | Neal Norwitz | 2006-08-12 | 1 | -1/+1 |
|
|
* | If _stat_float_times is false, we will try to INCREF ival which could be NULL. | Neal Norwitz | 2006-08-12 | 1 | -0/+2 |
|
|
* | Klocwork made another run and found a bunch more problems. | Neal Norwitz | 2006-08-12 | 4 | -2/+12 |
|
|
* | When a ctypes C callback function is called, zero out the result | Thomas Heller | 2006-08-11 | 1 | -7/+17 |
|
|
* | Update dangling references to the 3.2 database to | Martin v. Löwis | 2006-08-10 | 1 | -5/+5 |
|
|
* | Bug #1535081: A leading underscore has been added to the names of | Georg Brandl | 2006-08-06 | 1 | -5/+8 |
|
|
* | Fix #1530559, struct.pack raises TypeError where it used to convert. | Bob Ippolito | 2006-08-04 | 1 | -0/+60 |
|
|
* | Change fix for segfaulting property(), add a NEWS entry and a test. | Georg Brandl | 2006-08-04 | 1 | -0/+9 |
|
|
* | Correction of patch #1455898: In the mbcs decoder, set final=False | Martin v. Löwis | 2006-08-02 | 1 | -1/+1 |
|
|
* | Patch #1519025 and bug #926423: If a KeyboardInterrupt occurs during | Neal Norwitz | 2006-08-02 | 1 | -18/+36 |
|
|
* | v is already checked for NULL, so just DECREF it | Neal Norwitz | 2006-08-02 | 1 | -1/+1 |
|
|
* | _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long. | Neal Norwitz | 2006-08-02 | 1 | -3/+3 |
|
|
* | Prevent memory leak on error. | Neal Norwitz | 2006-08-02 | 1 | -1/+1 |
|
|