| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEFAULT, it does not | Fred Drake | 2001-05-03 | 2 | -21/+21 |
|
|
* | Mchael Hudson pointed out that the code for detecting changes in | Guido van Rossum | 2001-05-02 | 1 | -4/+4 |
|
|
* | Fix for bug #417030: "print '%*s' fails for unicode string" | Marc-André Lemburg | 2001-05-02 | 1 | -2/+3 |
|
|
* | Plug a memory leak in list(), when appending to the result list. | Tim Peters | 2001-05-02 | 1 | -5/+9 |
|
|
* | Generalize list(seq) to work with iterators. This also generalizes list() | Tim Peters | 2001-05-01 | 1 | -31/+57 |
|
|
* | Discard a misleading comment about iter_iternext(). | Guido van Rossum | 2001-05-01 | 1 | -1/+0 |
|
|
* | Printing objects to a real file still wasn't done right: if the | Guido van Rossum | 2001-05-01 | 1 | -32/+14 |
|
|
* | Add a proper implementation for the tp_str slot (returning self, of | Guido van Rossum | 2001-05-01 | 1 | -1/+8 |
|
|
* | Add experimental iterkeys(), itervalues(), iteritems() to dict | Guido van Rossum | 2001-05-01 | 1 | -11/+85 |
|
|
* | Well darnit! The innocuous fix I made to PyObject_Print() caused | Guido van Rossum | 2001-04-30 | 1 | -1/+20 |
|
|
* | A different approach to the problem reported in | Tim Peters | 2001-04-28 | 2 | -37/+54 |
|
|
* | (Adding this to the trunk as well.) | Guido van Rossum | 2001-04-27 | 1 | -1/+4 |
|
|
* | This patch originated from an idea by Martin v. Loewis who submitted a | Marc-André Lemburg | 2001-04-23 | 1 | -51/+133 |
|
|
* | Mondo changes to the iterator stuff, without changing how Python code | Guido van Rossum | 2001-04-23 | 5 | -28/+148 |
|
|
* | Oops, forgot to merge this from the iter-branch to the trunk. | Guido van Rossum | 2001-04-21 | 1 | -9/+37 |
|
|
* | SF but #417587: compiler warnings compiling 2.1. | Tim Peters | 2001-04-21 | 1 | -3/+0 |
|
|
* | Adding iterobject.[ch], which were accidentally not added. Sorry\! | Guido van Rossum | 2001-04-20 | 1 | -0/+188 |
|
|
* | Iterators phase 1. This comprises: | Guido van Rossum | 2001-04-20 | 4 | -2/+151 |
|
|
* | Oops. Removed dictiter_new decl that wasn't supposed to go in yet. | Guido van Rossum | 2001-04-20 | 1 | -2/+0 |
|
|
* | Implement, test and document "key in dict" and "key not in dict". | Guido van Rossum | 2001-04-20 | 1 | -1/+35 |
|
|
* | CVS patch 416248: 2.1c1 unicodeobject: unused vrbl cleanup, from Mark Favas. | Tim Peters | 2001-04-19 | 1 | -2/+0 |
|
|
* | Revert previous checkin, which caused test_unicodedata to fail. | Jeremy Hylton | 2001-04-19 | 1 | -33/+0 |
|
|
* | Patch #416953: Cache ASCII characters to speed up ASCII decoding. | Martin v. Löwis | 2001-04-18 | 1 | -0/+33 |
|
|
* | Tim pointed out a remaining vulnerability in popitem(): the | Guido van Rossum | 2001-04-16 | 1 | -5/+6 |
|
|
* | Tentative fix for a problem that Tim discovered at the last moment, | Guido van Rossum | 2001-04-15 | 1 | -61/+110 |
|
|
* | Make one more private symbol static. | Guido van Rossum | 2001-04-14 | 1 | -1/+1 |
|
|
* | Make some private symbols static. | Guido van Rossum | 2001-04-14 | 2 | -3/+3 |
|
|
* | Bug 415514 reported that e.g. | Tim Peters | 2001-04-12 | 2 | -38/+43 |
|
|
* | Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. | Tim Peters | 2001-04-12 | 2 | -25/+37 |
|
|
* | Fixed ref count bug. Patch #411191. Found by Walter Dörwald. | Marc-André Lemburg | 2001-03-25 | 1 | -1/+3 |
|
|
* | Add support for weak references to the function and method types. | Fred Drake | 2001-03-23 | 2 | -3/+13 |
|
|
* | A small change to the C API for weakly-referencable types: Such types | Fred Drake | 2001-03-22 | 1 | -0/+1 |
|
|
* | Make PyDict_Next safe to use for loops that merely modify the values | Tim Peters | 2001-03-21 | 1 | -8/+32 |
|
|
* | Move the code implementing isinstance() and issubclass() to new C | Guido van Rossum | 2001-03-21 | 1 | -0/+112 |
|
|
* | Fix PyFrame_FastToLocals() and counterpart to deal with cells and | Jeremy Hylton | 2001-03-21 | 1 | -20/+68 |
|
|
* | SF patch #408326 by Robin Thomas: slice objects comparable, not | Guido van Rossum | 2001-03-20 | 1 | -3/+23 |
|
|
* | SF bug [ #409448 ] Complex division is braindead | Tim Peters | 2001-03-18 | 1 | -8/+58 |
|
|
* | Variety of small INC/DECREF patches that fix reported memory leaks | Jeremy Hylton | 2001-03-13 | 2 | -3/+5 |
|
|
* | Identifiers matching _[A-Z_]\w* are reserved for C implementations. | Tim Peters | 2001-03-11 | 1 | -6/+6 |
|
|
* | When 1.6 boosted the # of digits produced by repr(float), repr(complex) | Tim Peters | 2001-03-11 | 2 | -9/+32 |
|
|
* | Avoid giving prototypes on Solaris. | Martin v. Löwis | 2001-03-06 | 1 | -1/+1 |
|
|
* | Use Py_CHARMASK for ctype macros. Fixes bug #232787. | Martin v. Löwis | 2001-03-06 | 1 | -1/+1 |
|
|
* | Two improvements to large file support: | Guido van Rossum | 2001-03-01 | 1 | -30/+18 |
|
|
* | Visit the closure during traversal and XDECREF it on during deallocation. | Jeremy Hylton | 2001-03-01 | 1 | -0/+6 |
|
|
* | Fix SF buf 404774 submitted by Gregory H. Ball | Jeremy Hylton | 2001-02-28 | 1 | -1/+1 |
|
|
* | Add Vladimir Marangozov's object allocator. It is disabled by default. This | Neil Schemenauer | 2001-02-27 | 2 | -0/+747 |
|
|
* | The return value from PyObject_ClearWeakRefs() is no longer meaningful, | Fred Drake | 2001-02-26 | 2 | -5/+4 |
|
|
* | instancemethod_setattro(): Raise TypeError if an attempt is made to | Barry Warsaw | 2001-02-26 | 1 | -15/+2 |
|
|
* | _Py_ReleaseInternedStrings(): Private API function to decref and | Barry Warsaw | 2001-02-23 | 1 | -0/+10 |
|
|
* | _PyObject_Dump(): If argument is NULL, print "NULL" instead of | Barry Warsaw | 2001-02-22 | 1 | -3/+7 |
|
|