| Commit message (Expand) | Author | Age | Files | Lines |
* | Undo the last chunk of the previous patch, putting back a useful | Guido van Rossum | 2002-06-10 | 1 | -1/+3 |
|
|
* | In the recent python-dev thread "Bizarre new test failure", we | Guido van Rossum | 2002-06-10 | 1 | -32/+48 |
|
|
* | Three's a charm: yet another fix for SF bug 551412. Thinking again | Guido van Rossum | 2002-06-10 | 1 | -19/+17 |
|
|
* | Close SF bug 563740. complex() now finds __complex__() in new style classes. | Raymond Hettinger | 2002-06-06 | 2 | -28/+25 |
|
|
* | Pyrangeiter_Type && range_iter should be static | Neal Norwitz | 2002-06-06 | 1 | -5/+5 |
|
|
* | Skip Montanaro's patch, SF 559833, exposing xrange type in builtins. | Raymond Hettinger | 2002-06-05 | 1 | -2/+84 |
|
|
* | SF 564601 adding rangeiterobject to make xrange() iterate like range(). | Raymond Hettinger | 2002-06-05 | 1 | -46/+91 |
|
|
* | Better isinstance error message. | Thomas Heller | 2002-06-05 | 1 | -1/+2 |
|
|
* | Address SF bug 519621: slots weren't traversed by GC. | Guido van Rossum | 2002-06-04 | 1 | -49/+137 |
|
|
* | Inverted test for small speedup | Raymond Hettinger | 2002-06-04 | 1 | -5/+4 |
|
|
* | Add a docstring to the module type. | Guido van Rossum | 2002-06-04 | 1 | -1/+7 |
|
|
* | Surprising fix for SF bug 563060: module can be used as base class. | Guido van Rossum | 2002-06-04 | 1 | -3/+16 |
|
|
* | Address the residual issue with the fix for SF 551412 in | Guido van Rossum | 2002-06-03 | 1 | -1/+11 |
|
|
* | A bogus assert in the new listiter code prevented starting Python in a | Tim Peters | 2002-06-01 | 1 | -10/+12 |
|
|
* | SF 560736. Optimize list iteration by filling the tp_iter slot. | Raymond Hettinger | 2002-05-31 | 2 | -18/+125 |
|
|
* | Fix typo | Neal Norwitz | 2002-05-31 | 1 | -1/+1 |
|
|
* | Implement the intention of SF patch 472523 (but coded differently). | Guido van Rossum | 2002-05-31 | 1 | -15/+67 |
|
|
* | Change name from string to basestring | Neal Norwitz | 2002-05-31 | 1 | -3/+3 |
|
|
* | Fix a possible segfault. Found be Neal Norvitz. | Marc-André Lemburg | 2002-05-29 | 1 | -1/+1 |
|
|
* | Fix for bug [ 561796 ] string.find causes lazy error | Marc-André Lemburg | 2002-05-29 | 1 | -2/+2 |
|
|
* | Fix for SF bug 551412. When _PyType_Lookup() is called on a type | Guido van Rossum | 2002-05-24 | 1 | -0/+6 |
|
|
* | - A new type object, 'string', is added. This is a common base type | Guido van Rossum | 2002-05-24 | 3 | -2/+61 |
|
|
* | Add a safeguard against setting the class to something with a | Guido van Rossum | 2002-05-24 | 1 | -0/+10 |
|
|
* | Use function instead of macro spellings for PyObject_memorystuff. | Tim Peters | 2002-05-23 | 1 | -2/+2 |
|
|
* | Closes: #556025 seg fault when doing list(xrange(1e9)) | Neal Norwitz | 2002-05-22 | 1 | -2/+11 |
|
|
* | file_doc: Add some description of the U mode character, but only when | Barry Warsaw | 2002-05-22 | 1 | -0/+10 |
|
|
* | Patch 549187. Improve string formatting error message. | Raymond Hettinger | 2002-05-21 | 2 | -4/+4 |
|
|
* | Jim Fulton reported a segfault in dir(). A heavily proxied object | Guido van Rossum | 2002-05-13 | 1 | -7/+15 |
|
|
* | Add #ifdef PY_USING_UNICODE sections, so that | Walter Dörwald | 2002-05-13 | 1 | -0/+6 |
|
|
* | Patch #551410: Implement tp_getiter. | Martin v. Löwis | 2002-05-08 | 1 | -1/+51 |
|
|
* | Patch #552433: Special-case tuples. Avoid sub-type checking for lists. | Martin v. Löwis | 2002-05-08 | 1 | -2/+18 |
|
|
* | PyObject_Realloc(): If a small block is shrinking, bite the expense of | Tim Peters | 2002-05-02 | 1 | -5/+16 |
|
|
* | Remove old deprecated features from the xrange object. | Fred Drake | 2002-05-02 | 1 | -273/+40 |
|
|
* | Fix attribute access for the xrange objects. The tp_getattr and tp_getattro | Fred Drake | 2002-05-02 | 1 | -31/+38 |
|
|
* | clarify message when raising TypeError to indicate that float() accepts | Skip Montanaro | 2002-05-02 | 1 | -1/+1 |
|
|
* | Just added comments, and cleared some XXX questions, related to int | Tim Peters | 2002-04-28 | 1 | -3/+12 |
|
|
* | _PyObject_DebugCheckAddress(): If the leading pad bytes are corrupt, | Tim Peters | 2002-04-28 | 1 | -18/+25 |
|
|
* | Repair widespread misuse of _PyString_Resize. Since it's clear people | Tim Peters | 2002-04-27 | 3 | -32/+19 |
|
|
* | SF patch 549375: Compromise PyUnicode_EncodeUTF8 | Tim Peters | 2002-04-27 | 1 | -108/+70 |
|
|
* | - New builtin function enumerate(x), from PEP 279. Example: | Guido van Rossum | 2002-04-26 | 1 | -0/+139 |
|
|
* | PyNumber_CoerceEx: this took a shortcut (not doing anything) when the | Guido van Rossum | 2002-04-26 | 1 | -1/+4 |
|
|
* | Make sure that tp_free frees the int the same way as tp_dealloc would. | Guido van Rossum | 2002-04-26 | 1 | -0/+8 |
|
|
* | Clean up the layout of the bool_as_number struct initializer. | Guido van Rossum | 2002-04-25 | 1 | -38/+38 |
|
|
* | abstract_get_bases(): Clarify exactly what the return values and | Barry Warsaw | 2002-04-23 | 1 | -9/+46 |
|
|
* | Clarify return value of PyLong_AsLongLong(). | Jeremy Hylton | 2002-04-23 | 1 | -1/+1 |
|
|
* | unicode_memchr(): Squashed gratuitous int-vs-size_t mismatch (which | Tim Peters | 2002-04-22 | 1 | -3/+3 |
|
|
* | Apply patch diff.txt from SF feature request | Walter Dörwald | 2002-04-22 | 2 | -70/+191 |
|
|
* | Py_UniversalNewlineFread(): small speed boost on non-Windows boxes. | Tim Peters | 2002-04-21 | 1 | -3/+3 |
|
|
* | PyUnicode_EncodeUTF8(): tightened the memory asserts a bit, and at least | Tim Peters | 2002-04-21 | 1 | -12/+20 |
|
|
* | Back out 2.140. | Martin v. Löwis | 2002-04-21 | 1 | -43/+55 |
|
|