| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #8268: Old-style classes (not just instances) now support weak | Antoine Pitrou | 2010-03-31 | 1 | -1/+4 |
* | remove the check that classmethod's argument is a callable | Benjamin Peterson | 2009-09-01 | 1 | -4/+0 |
* | generate py3k warnings on __getslice__, __delslice__, and __setslice__ | Benjamin Peterson | 2008-08-24 | 1 | -3/+24 |
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -87/+87 |
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -87/+87 |
* | Issue 2332: add new attribute names for instance method objects | Neal Norwitz | 2008-03-18 | 1 | -0/+4 |
* | Implemented Martin's suggestion to clear the free lists during the garbage co... | Christian Heimes | 2008-02-14 | 1 | -2/+11 |
* | Unified naming convention for free lists and their limits. All free lists | Christian Heimes | 2008-02-06 | 1 | -2/+4 |
* | Limit free list of method and builtin function objects to 256 entries each. | Christian Heimes | 2008-02-06 | 1 | -5/+18 |
* | Make int() and long() fall back to __trunc__(). See issue 2002. | Jeffrey Yasskin | 2008-02-04 | 1 | -1/+23 |
* | Fix an edge case whereby the __del__() method of a classic class could | Guido van Rossum | 2008-01-18 | 1 | -0/+10 |
* | As per Armin Rigo's suggestion, remove special handing from intobject.c to de... | Kristján Valur Jónsson | 2007-05-07 | 1 | -1/+13 |
* | Correctly forward exception in instance_contains(). | Martin v. Löwis | 2006-11-08 | 1 | -4/+6 |
* | Patch #1567691: super() and new.instancemethod() now don't accept | Georg Brandl | 2006-09-30 | 1 | -0/+2 |
* | Move initialization of interned strings to before allocating the | Neal Norwitz | 2006-08-19 | 1 | -11/+15 |
* | Can't return NULL from a void function. If there is a memory error, | Neal Norwitz | 2006-08-14 | 1 | -2/+2 |
* | 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 | 1 | -6/+7 |
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -18/+6 |
* | __hash__ may now return long int; the final hash | Martin v. Löwis | 2006-08-09 | 1 | -5/+3 |
* | If a classic class defined a __coerce__() method that just returned its two | Brett Cannon | 2006-06-13 | 1 | -0/+3 |
* | (arre, arigo) SF bug #1350060 | Armin Rigo | 2006-06-08 | 1 | -3/+14 |
* | Correct some value converting strangenesses. | Georg Brandl | 2006-05-29 | 1 | -2/+2 |
* | Simplify calling. | Georg Brandl | 2006-05-26 | 1 | -8/+2 |
* | Replace PyObject_CallFunction calls with only object args | Georg Brandl | 2006-05-25 | 1 | -5/+2 |
* | Fix more ssize_t issues. | Martin v. Löwis | 2006-04-22 | 1 | -5/+5 |
* | Use Py_VISIT in all tp_traverse methods, instead of traversing manually or | Thomas Wouters | 2006-04-15 | 1 | -58/+11 |
* | More C++-compliance. Note especially listobject.c - to get C++ to accept the | Anthony Baxter | 2006-04-11 | 1 | -27/+27 |
* | Remove unnecessary casts in type object initializers. | Georg Brandl | 2006-03-30 | 1 | -40/+40 |
* | Stop duplicating code and handle slice indices consistently and correctly | Neal Norwitz | 2006-03-23 | 1 | -24/+3 |
* | Use macro versions instead of function versions when we already know the type. | Neal Norwitz | 2006-03-20 | 1 | -5/+5 |
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -0/+38 |
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
* | Remove size constraints in SLICE opcodes. | Martin v. Löwis | 2006-02-17 | 1 | -3/+3 |
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -22/+26 |
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -1/+1 |
* | - On 64-bit platforms, when __len__() returns a value that cannot be | Guido van Rossum | 2005-09-20 | 1 | -1/+1 |
* | A minor fix for 64-bit platforms: when __len__() returns Python int | Guido van Rossum | 2005-09-19 | 1 | -1/+11 |
* | Insert missing flag. | Raymond Hettinger | 2005-06-19 | 1 | -1/+1 |
* | Fix for rather inaccurately titled bug | Michael W. Hudson | 2005-03-30 | 1 | -0/+6 |
* | A static swapped_op[] array was defined in 3 different C files, & I think | Tim Peters | 2004-09-23 | 1 | -4/+1 |
* | Repair the same thinko in two places about handling of _Py_RefTotal in | Michael W. Hudson | 2004-08-03 | 1 | -6/+7 |
* | - When method objects have an attribute that can be satisfied either | Guido van Rossum | 2003-11-22 | 1 | -28/+30 |
* | Deleting cyclic object comparison. | Armin Rigo | 2003-10-28 | 1 | -6/+4 |
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -14/+14 |
* | Fix leak in classobject.c. The leak surfaced on the error exit when | Raymond Hettinger | 2003-09-16 | 1 | -0/+1 |
* | Make it possible to call instancemethod() with 2 arguments. | Guido van Rossum | 2003-04-09 | 1 | -2/+2 |
* | New private API function _PyInstance_Lookup. gc will use this to figure | Tim Peters | 2003-04-07 | 1 | -0/+21 |
* | Refactor instancemethod_descr_get() to (a) be more clear, (b) be safe | Guido van Rossum | 2003-02-11 | 1 | -8/+18 |
* | SF patch #659536: Use PyArg_UnpackTuple where possible. | Raymond Hettinger | 2002-12-29 | 1 | -1/+1 |