| Commit message (Expand) | Author | Age | Files | Lines |
* | For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing. | Raymond Hettinger | 2006-12-30 | 1 | -4/+24 |
|
|
* | Typo fix | Andrew M. Kuchling | 2006-12-22 | 1 | -1/+1 |
|
|
* | Port Georg's dictobject.c fix keys that were tuples got unpacked on the way t... | Raymond Hettinger | 2006-12-08 | 1 | -1/+15 |
|
|
* | Port Armin's fix for a dict resize vulnerability (svn revision 46589, sf bug ... | Raymond Hettinger | 2006-12-08 | 1 | -6/+31 |
|
|
* | Eliminate two redundant calls to PyObject_Hash(). | Raymond Hettinger | 2006-12-08 | 1 | -4/+23 |
|
|
* | Patch [ 1586791 ] better error msgs for some TypeErrors | Georg Brandl | 2006-11-19 | 3 | -14/+22 |
|
|
* | Bug #1067760: Deprecate passing floats to file.seek. | Martin v. Löwis | 2006-11-12 | 1 | -4/+17 |
|
|
* | Correctly forward exception in instance_contains(). | Martin v. Löwis | 2006-11-08 | 1 | -4/+6 |
|
|
* | Fix refleak | Neal Norwitz | 2006-10-29 | 1 | -0/+1 |
|
|
* | Bug #1576657: when setting a KeyError for a tuple key, make sure that | Georg Brandl | 2006-10-29 | 1 | -3/+16 |
|
|
* | Don't inline Py_ADDRESS_IN_RANGE with gcc 4+ either. | Neal Norwitz | 2006-10-28 | 1 | -1/+2 |
|
|
* | Prevent crash if alloc of garbage fails. Found by Typo.pl. | Neal Norwitz | 2006-10-28 | 1 | -0/+5 |
|
|
* | Fix warnings with HP's C compiler. It doesn't recognize that infinite | Neal Norwitz | 2006-10-28 | 2 | -0/+6 |
|
|
* | WindowsError.str should display the windows error code, | Thomas Heller | 2006-10-27 | 1 | -7/+7 |
|
|
* | Bug #1545497: when given an explicit base, int() did ignore NULs | Georg Brandl | 2006-10-12 | 1 | -2/+19 |
|
|
* | Fix wording in comment | Andrew M. Kuchling | 2006-10-09 | 1 | -2/+2 |
|
|
* | Forward-port of r52136,52138: a review of overflow-detecting code. | Armin Rigo | 2006-10-04 | 8 | -65/+104 |
|
|
* | Fix integer negation and absolute value to not rely | Martin v. Löwis | 2006-10-04 | 1 | -4/+3 |
|
|
* | Bug #1566800: make sure that EnvironmentError can be called with any | Georg Brandl | 2006-09-30 | 1 | -1/+1 |
|
|
* | Patch #1567691: super() and new.instancemethod() now don't accept | Georg Brandl | 2006-09-30 | 2 | -0/+4 |
|
|
* | Allow exceptions to be directly sliced again | Brett Cannon | 2006-09-20 | 1 | -1/+8 |
|
|
* | Remove the __unicode__ method from exceptions. Allows unicode() to be called | Brett Cannon | 2006-09-09 | 1 | -17/+0 |
|
|
* | Fix refcounts and add error checks. | Raymond Hettinger | 2006-09-07 | 1 | -8/+35 |
|
|
* | Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. | Georg Brandl | 2006-09-06 | 1 | -2/+8 |
|
|
* | Fix SF bug #1546288, crash in dict_equal. | Neal Norwitz | 2006-09-05 | 1 | -0/+3 |
|
|
* | "Conceptual" merge of rev 51711 from the 2.5 branch. | Tim Peters | 2006-09-05 | 1 | -1/+1 |
|
|
* | Fix endcase for str.rpartition() | Raymond Hettinger | 2006-09-04 | 3 | -8/+8 |
|
|
* | Make sure memory is properly cleaned up in file_init. | Brett Cannon | 2006-08-31 | 1 | -1/+1 |
|
|
* | Reverting the patch that tried to fix the issue whereby x**2 raises | Alex Martelli | 2006-08-23 | 1 | -3/+3 |
|
|
* | x**2 should about equal x*x (including for a float x such that the result is | Alex Martelli | 2006-08-23 | 1 | -3/+3 |
|
|
* | Patch #1541585: fix buffer overrun when performing repr() on | Neal Norwitz | 2006-08-21 | 1 | -12/+29 |
|
|
* | Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev | Neal Norwitz | 2006-08-21 | 1 | -1/+1 |
|
|
* | Move initialization to after the asserts for non-NULL values. | Neal Norwitz | 2006-08-19 | 1 | -2/+4 |
|
|
* | Move initialization of interned strings to before allocating the | Neal Norwitz | 2006-08-19 | 1 | -11/+15 |
|
|
* | Subclasses of int/long are allowed to define an __index__. | Neal Norwitz | 2006-08-15 | 1 | -4/+2 |
|
|
* | Fix refleak introduced in rev. 51248. | Georg Brandl | 2006-08-14 | 1 | -1/+3 |
|
|
* | Correct an accidentally removed previous patch. | Marc-André Lemburg | 2006-08-14 | 1 | -5/+2 |
|
|
* | Slightly revised version of patch #1538956: | Marc-André Lemburg | 2006-08-14 | 3 | -21/+93 |
|
|
* | Can't return NULL from a void function. If there is a memory error, | Neal Norwitz | 2006-08-14 | 1 | -2/+2 |
|
|
* | Fix segfault when doing string formatting on subclasses of long if | Neal Norwitz | 2006-08-13 | 1 | -1/+4 |
|
|
* | Handle a whole lot of failures from PyString_FromInternedString(). | Neal Norwitz | 2006-08-13 | 1 | -25/+101 |
|
|
* | Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots | Neal Norwitz | 2006-08-12 | 2 | -11/+10 |
|
|
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 10 | -130/+125 |
|
|
* | Check return of PyMem_MALLOC (garbage) is non-NULL. | Neal Norwitz | 2006-08-12 | 1 | -2/+6 |
|
|
* | Whoops, how did that get in there. :-) Revert all the parts of 51227 that we... | Neal Norwitz | 2006-08-12 | 1 | -3/+2 |
|
|
* | Check returned pointer is valid. | Neal Norwitz | 2006-08-12 | 1 | -2/+3 |
|
|
* | Klocwork made another run and found a bunch more problems. | Neal Norwitz | 2006-08-12 | 1 | -0/+4 |
|
|
* | Fix and test for an infinite C recursion. | Armin Rigo | 2006-08-09 | 1 | -1/+1 |
|
|
* | __hash__ may now return long int; the final hash | Martin v. Löwis | 2006-08-09 | 2 | -6/+7 |
|
|
* | memcmp() can return values other than -1, 0, and +1 but tp_compare | Thomas Heller | 2006-08-08 | 1 | -1/+1 |
|
|