| Commit message (Expand) | Author | Age | Files | Lines |
* | The opcode FOR_LOOP no longer exists. | Guido van Rossum | 2002-06-13 | 1 | -31/+0 |
|
|
* | SF bug 567538: Generator can crash the interpreter (Finn Bock). | Guido van Rossum | 2002-06-12 | 1 | -2/+2 |
|
|
* | Patch #488073: AtheOS port. | Martin v. Löwis | 2002-06-11 | 3 | -0/+351 |
|
|
* | Patch #505375: Make doc strings optional. | Martin v. Löwis | 2002-06-09 | 1 | -30/+53 |
|
|
* | 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 |
|
|
* | Fix SF bug [ 561825 ] Confusing error for "del f()" | Jeremy Hylton | 2002-05-31 | 1 | -2/+6 |
|
|
* | imp_load_module(): correct and comment the sense of the test for '+' | Guido van Rossum | 2002-05-30 | 1 | -2/+7 |
|
|
* | Cover a few corners in the 'U' mode integration to make imp work. | Jeremy Hylton | 2002-05-30 | 1 | -8/+14 |
|
|
* | As discussed on python-dev, add a mechanism to indicate features | Neal Norwitz | 2002-05-29 | 1 | -0/+9 |
|
|
* | Accept u"..." literals even when Unicode is disabled. But these | Guido van Rossum | 2002-05-28 | 1 | -8/+13 |
|
|
* | File modes in filedescr entries are also passed to Python, so we now put "U" | Jack Jansen | 2002-05-28 | 1 | -4/+7 |
|
|
* | - A new type object, 'string', is added. This is a common base type | Guido van Rossum | 2002-05-24 | 1 | -0/+1 |
|
|
* | Disambiguate the grammar for backtick. | Guido van Rossum | 2002-05-24 | 2 | -57/+76 |
|
|
* | John Aycock correctly pointed out that the grammar for | Tim Peters | 2002-05-23 | 1 | -3/+2 |
|
|
* | Fix for | Michael W. Hudson | 2002-05-20 | 1 | -1/+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 |
|
|
* | If Py_OptimizeFlag is false then always evaluate assert conditions, don't | Neil Schemenauer | 2002-04-26 | 1 | -15/+7 |
|
|
* | Ignore SIGXFSZ. | Jeremy Hylton | 2002-04-23 | 1 | -0/+3 |
|
|
* | Moving pymalloc along. | Tim Peters | 2002-04-22 | 1 | -2/+2 |
|
|
* | ceval.c/do_raise(): Tighten the test to disallow raising an instance of | Tim Peters | 2002-04-18 | 1 | -1/+4 |
|
|
* | Mass checkin of universal newline support. | Jack Jansen | 2002-04-14 | 4 | -9/+9 |
|
|
* | Patch #542659: Eliminate duplicate check for NULL of freevars/cellvars. | Martin v. Löwis | 2002-04-14 | 1 | -4/+0 |
|
|
* | _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats. | Tim Peters | 2002-04-13 | 1 | -0/+5 |
|
|
* | Removed more hair in support of future-generator stmts. | Tim Peters | 2002-04-12 | 1 | -1/+1 |
|
|
* | Got rid of ifdefs for long-obsolete GUSI versions. | Jack Jansen | 2002-04-11 | 1 | -21/+0 |
|
|
* | is_builtin() is not a Boolean -- it can return -1, 0, 1. [SF #541652] | Guido van Rossum | 2002-04-09 | 1 | -1/+1 |
|
|
* | Move Unicode finalization further down in the chain. | Marc-André Lemburg | 2002-04-08 | 1 | -5/+5 |
|
|
* | Return bools from functions named is_<whatever>(). | Guido van Rossum | 2002-04-07 | 1 | -4/+4 |
|
|
* | Fix by Greg Chapman from SF bug 534347: Potential AV in vgetargskeywords. | Guido van Rossum | 2002-04-04 | 1 | -1/+7 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 2 | -8/+27 |
|
|
* | Get rid of another use of PyArg_Parse() | Neal Norwitz | 2002-04-01 | 1 | -2/+2 |
|
|
* | Use symbolic METH_VARARGS instead of 1 for ml_flags | Neal Norwitz | 2002-03-31 | 2 | -20/+20 |
|
|
* | Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols. | Tim Peters | 2002-03-29 | 1 | -2/+0 |
|
|
* | Call PyObject_GC_UnTrack before putting an object on the list of trash. | Neil Schemenauer | 2002-03-29 | 1 | -2/+2 |
|
|
* | add comment reminding people about class hierarchy in Doc/lib/libexcs.tex | Skip Montanaro | 2002-03-28 | 1 | -0/+5 |
|
|
* | Fix an issue that was reported in but unrelated to the main problem of | Guido van Rossum | 2002-03-28 | 1 | -2/+10 |
|
|
* | Introduce two new flag bits that can be set in a PyMethodDef method | Fred Drake | 2002-03-28 | 1 | -0/+7 |
|
|
* | Change sys_exit to use METH_VARARGS. | Neal Norwitz | 2002-03-27 | 1 | -2/+5 |
|
|
* | I've been waiting 8 years for KSR to re-emerge from bankruptcy. If they | Tim Peters | 2002-03-25 | 1 | -4/+0 |
|
|
* | SF bug 480215: softspace confused in nested print | Tim Peters | 2002-03-24 | 1 | -10/+12 |
|
|
* | Fix wording of sys.exit docstring. Close SF bug 534113. | Neil Schemenauer | 2002-03-23 | 1 | -1/+1 |
|
|
* | Disable the parser hacks that enabled the "yield" keyword using a future | Neil Schemenauer | 2002-03-22 | 2 | -11/+15 |
|
|
* | Re-enable GC of generator objects. | Neil Schemenauer | 2002-03-18 | 1 | -6/+6 |
|
|
* | Document that _POSIX_SEMAPHORES is predefined. | Martin v. Löwis | 2002-03-17 | 1 | -0/+4 |
|
|
* | Patch #525532: Add support for POSIX semaphores. | Martin v. Löwis | 2002-03-17 | 1 | -0/+119 |
|
|
* | Patch #504224: add plan9 threads include to thread.c. | Martin v. Löwis | 2002-03-09 | 1 | -0/+4 |
|
|