| Commit message (Expand) | Author | Age | Files | Lines |
* | some more error-message enhancements | Alex Martelli | 2003-04-23 | 1 | -10/+10 |
|
|
* | complete and clarify some error messages for range() | Alex Martelli | 2003-04-23 | 1 | -5/+5 |
|
|
* | fixed a potential refcount bug (thanks Raymond!). | Alex Martelli | 2003-04-22 | 1 | -1/+1 |
|
|
* | Adding new built-in function sum, with docs and tests. | Alex Martelli | 2003-04-22 | 1 | -0/+61 |
|
|
* | Some errors from range() should be TypeError, not ValueError. | Guido van Rossum | 2003-04-15 | 1 | -3/+3 |
|
|
* | Prompted by Tim's comment, when handle_range_longs() sees an | Guido van Rossum | 2003-04-14 | 1 | -9/+9 |
|
|
* | handle_range_longs(): refcount handling is very delicate here, and | Tim Peters | 2003-04-13 | 1 | -31/+50 |
|
|
* | Patch by Chad Netzer (with significant change): | Guido van Rossum | 2003-04-11 | 1 | -5/+190 |
|
|
* | SF patch #701494: more apply removals | Raymond Hettinger | 2003-04-06 | 1 | -1/+4 |
|
|
* | Improved new Py_TRACE_REFS gimmicks. | Tim Peters | 2003-03-23 | 1 | -2/+16 |
|
|
* | Fix SF bug #690435, apply fails to check if warning raises exception | Neal Norwitz | 2003-02-23 | 1 | -3/+4 |
|
|
* | - Finally fixed the bug in compile() and exec where a string ending | Guido van Rossum | 2003-02-13 | 1 | -1/+3 |
|
|
* | Change filtertuple() to use tp_as_sequence->sq_item | Walter Dörwald | 2003-02-10 | 1 | -1/+6 |
|
|
* | Squashed compiler wng about signed/unsigned clash in comparison. | Tim Peters | 2003-02-10 | 1 | -1/+1 |
|
|
* | Change filterstring() and filterunicode(): If the | Walter Dörwald | 2003-02-10 | 1 | -43/+48 |
|
|
* | My previous checkin caused compile() to no longer accept buffers, as noted | Just van Rossum | 2003-02-10 | 1 | -5/+7 |
|
|
* | patch #683515: "Add unicode support to compile(), eval() and exec" | Just van Rossum | 2003-02-10 | 1 | -6/+40 |
|
|
* | Make sure filter() never returns tuple, str or unicode | Walter Dörwald | 2003-02-04 | 1 | -5/+22 |
|
|
* | PyUnicode_Resize() doesn't free its argument in case of a failure, | Walter Dörwald | 2003-02-04 | 1 | -1/+1 |
|
|
* | filterstring() and filterunicode() in Python/bltinmodule.c | Walter Dörwald | 2003-02-04 | 1 | -8/+70 |
|
|
* | SF #661437, apply() should get PendingDeprecation | Neal Norwitz | 2003-02-03 | 1 | -0/+3 |
|
|
* | Patch #636005: Filter unicode into unicode. | Martin v. Löwis | 2003-01-25 | 1 | -0/+62 |
|
|
* | SF bug #655271: Slightly modify locals() doc | Raymond Hettinger | 2003-01-04 | 1 | -1/+1 |
|
|
* | Make error message more specific for min() and max(). | Raymond Hettinger | 2002-12-29 | 1 | -1/+1 |
|
|
* | SF patch #659536: Use PyArg_UnpackTuple where possible. | Raymond Hettinger | 2002-12-29 | 1 | -18/+18 |
|
|
* | Enhance issubclass() and PyObject_IsSubclass() so that a tuple is | Walter Dörwald | 2002-12-12 | 1 | -1/+3 |
|
|
* | Patch #512981: Update readline input stream on sys.stdin/out change. | Martin v. Löwis | 2002-10-26 | 1 | -3/+5 |
|
|
* | execfile should call PyErr_SetFromErrnoWithFilename instead of | Peter Schneider-Kamp | 2002-08-27 | 1 | -1/+1 |
|
|
* | A nice little speed-up for filter(): | Guido van Rossum | 2002-08-16 | 1 | -13/+17 |
|
|
* | Patch #550192: Set softspace to 0 in raw_input(). | Martin v. Löwis | 2002-08-14 | 1 | -18/+22 |
|
|
* | Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. | Marc-André Lemburg | 2002-08-11 | 1 | -34/+1 |
|
|
* | Patch #569753: Remove support for WIN16. | Martin v. Löwis | 2002-06-30 | 1 | -1/+1 |
|
|
* | SF patch 568629 by Oren Tirosh: types made callable. | Guido van Rossum | 2002-06-14 | 1 | -48/+2 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -92/+92 |
|
|
* | Skip Montanaro's patch, SF 559833, exposing xrange type in builtins. | Raymond Hettinger | 2002-06-05 | 1 | -43/+1 |
|
|
* | Change name from string to basestring | Neal Norwitz | 2002-05-31 | 1 | -1/+1 |
|
|
* | - A new type object, 'string', is added. This is a common base type | Guido van Rossum | 2002-05-24 | 1 | -0/+1 |
|
|
* | SF bug 555042: zip() may trigger MemoryError. | Tim Peters | 2002-05-12 | 1 | -2/+7 |
|
|
* | builtin_zip(): Take a good guess at how big the result list will be, | Tim Peters | 2002-04-29 | 1 | -15/+42 |
|
|
* | Repair widespread misuse of _PyString_Resize. Since it's clear people | Tim Peters | 2002-04-27 | 1 | -2/+2 |
|
|
* | - New builtin function enumerate(x), from PEP 279. Example: | Guido van Rossum | 2002-04-26 | 1 | -0/+1 |
|
|
* | Mass checkin of universal newline support. | Jack Jansen | 2002-04-14 | 1 | -1/+1 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -8/+11 |
|
|
* | Patch #494045: patches errno and stat to cope on plan9. | Martin v. Löwis | 2002-03-09 | 1 | -15/+27 |
|
|
* | Docstring for filter(): Someone on the Tutor list reasonably complained | Tim Peters | 2002-03-09 | 1 | -5/+5 |
|
|
* | Include <unistd.h> in Python.h. Fixes #500924. | Martin v. Löwis | 2002-01-12 | 1 | -4/+0 |
|
|
* | Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code | Jeremy Hylton | 2001-12-13 | 1 | -1/+1 |
|
|
* | Use PyOS_snprintf instead of sprintf. | Jeremy Hylton | 2001-11-28 | 1 | -1/+1 |
|
|
* | SF patch 473749 compile under OS/2 VA C++, from Michael Muller. | Tim Peters | 2001-11-05 | 1 | -0/+4 |
|
|
* | Rename "dictionary" (type and constructor) to "dict". | Tim Peters | 2001-10-29 | 1 | -1/+1 |
|
|