summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* _PySys_Init(): It's rarely a good idea to size a buffer to theTim Peters2006-06-061-1/+1
* Add 3 more bytes to a buffer to cover constants in string and null byte on to...Brett Cannon2006-06-051-1/+1
* Revert revisions:Tim Peters2006-06-044-170/+4
* Patch #1346214: correctly optimize away "if 0"-style stmtsGeorg Brandl2006-06-042-15/+49
* clean up function declarations to conform to PEP-7 style.Andrew MacIntyre2006-06-043-22/+44
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-044-4/+170
* [ 1497053 ] Let dicts propagate the exceptions in user __eq__().Armin Rigo2006-06-011-2/+13
* Convert more modules to METH_VARARGS.Georg Brandl2006-05-291-5/+3
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-2/+2
* Fix compiler warning.Georg Brandl2006-05-291-1/+1
* Handle PyMem_Malloc failure in pystrtod.c. Closes #1494671.Georg Brandl2006-05-291-0/+7
* Fix #1494605.Georg Brandl2006-05-291-1/+2
* Correct None refcount issue in Mac modules. (Are theyGeorg Brandl2006-05-281-1/+1
* The empty string is a valid import path.Georg Brandl2006-05-281-2/+4
* PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-pasteTim Peters2006-05-282-18/+23
* Conversion of exceptions over from faked-up classes to new-style C types.Richard Jones2006-05-273-2056/+23
* needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in-Fredrik Lundh2006-05-271-60/+55
* Patch 1145039.Tim Peters2006-05-261-41/+56
* Replace Py_BuildValue("OO") by PyTuple_Pack.Georg Brandl2006-05-262-4/+4
* Need for speed: Patch #921466 : sys.path_importer_cache is now used to cache ...Georg Brandl2006-05-261-2/+30
* Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers,Fredrik Lundh2006-05-261-1/+1
* needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive"Fredrik Lundh2006-05-261-15/+23
* needforspeed: added Py_LOCAL macro, based on the LOCAL macro usedFredrik Lundh2006-05-261-53/+53
* Swap out bare malloc()/free() use for PyMem_MALLOC()/PyMem_FREE() .Brett Cannon2006-05-251-2/+2
* Replace PyObject_CallFunction calls with only object argsGeorg Brandl2006-05-252-4/+4
* A new table to help string->integer conversion was added yesterday toTim Peters2006-05-251-30/+2
* Update graminit.c for the fix for #1488915, Multiple dots in relative importThomas Wouters2006-05-251-20/+15
* Replace tab inside comment with space.Walter Dörwald2006-05-251-1/+1
* Bug #1334662 / patch #1335972: int(string, base) wrong answers.Tim Peters2006-05-231-88/+178
* Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.Richard Jones2006-05-231-17/+17
* PyErr_NewException now accepts a tuple of base classes as itsGeorg Brandl2006-05-231-3/+10
* Patch #1492356: Port to Windows CE (patch set 1).Martin v. Löwis2006-05-221-2/+2
* Oops, I forgot to include this file in the last commit (46046):Neal Norwitz2006-05-191-2/+2
* Fix #1474677, non-keyword argument following keyword.Neal Norwitz2006-05-191-0/+5
* Fix #132 from Coverity, retval could have been derefedNeal Norwitz2006-05-191-0/+4
* Remove bogus DECREF of self.Martin v. Löwis2006-05-151-65/+32
* - Bug #1487966: Fix SystemError with conditional expression in assignmentNeal Norwitz2006-05-151-0/+3
* Change WindowsError to carry the Win32 error code in winerror,Martin v. Löwis2006-05-111-4/+121
* Micro optimization. In the first case, we know that frame->f_exc_typeNeal Norwitz2006-05-091-3/+1
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-10/+3
* SF #1479181: split open() and file() from being aliases for each other.Neal Norwitz2006-05-021-4/+14
* Fix a warning on ppc (debian)Neal Norwitz2006-04-281-4/+7
* Fix a warning on alphaNeal Norwitz2006-04-281-1/+1
* - Add new Warning class, ImportWarningThomas Wouters2006-04-272-7/+35
* Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python usesThomas Wouters2006-04-251-0/+4
* Fix more ssize_t issues.Martin v. Löwis2006-04-223-4/+4
* Teach Python/ceval.c's inlining of 'str += str' about Py_ssize_t sizes; thisThomas Wouters2006-04-191-2/+2
* Change those parts of the Python-api that were functions in 2.4, andThomas Heller2006-04-181-4/+96
* Refactor: Move code that uses co_lnotab from ceval to codeobjectJeremy Hylton2006-04-181-117/+14
* Remove types from type_list if they have no objectsMartin v. Löwis2006-04-181-2/+9