| Commit message (Expand) | Author | Age | Files | Lines |
* | Bug #1512814, Fix incorrect lineno's when code at module scope | Neal Norwitz | 2006-07-10 | 1 | -1/+9 |
|
|
* | On 64 bit systems, int literals that use less than 64 bits are now ints | Neal Norwitz | 2006-07-09 | 1 | -0/+11 |
|
|
* | Fix SF bug 1441486: bad unary minus folding in compiler. | Neil Schemenauer | 2006-07-09 | 1 | -20/+53 |
|
|
* | Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation. | Neil Schemenauer | 2006-07-09 | 2 | -3/+5 |
|
|
* | Fix SF bug #1519018: 'as' is now validated properly in import statements | Neal Norwitz | 2006-07-08 | 1 | -1/+12 |
|
|
* | Fix refleaks reported by Shane Hathaway in SF patch #1515361. This change | Neal Norwitz | 2006-07-06 | 1 | -2/+4 |
|
|
* | Bug #1417699: Reject locale-specific decimal point in float() | Martin v. Löwis | 2006-07-03 | 1 | -0/+7 |
|
|
* | Bug #1511381: codec_getstreamcodec() in codec.c is corrected to | Hye-Shik Chang | 2006-06-23 | 1 | -3/+6 |
|
|
* | Patch #1454481: Make thread stack size runtime tunable. | Andrew MacIntyre | 2006-06-13 | 4 | -5/+163 |
|
|
* | i and j are initialized below when used. No need to do it twice | Neal Norwitz | 2006-06-12 | 1 | -1/+1 |
|
|
* | Get rid of f_restricted too. Doc the other 4 ints that were already removed | Neal Norwitz | 2006-06-12 | 1 | -1/+1 |
|
|
* | Fix indentation of case and a Py_ssize_t issue. | Neal Norwitz | 2006-06-12 | 1 | -2/+2 |
|
|
* | Patch #1495999: Part two of Windows CE changes. | Martin v. Löwis | 2006-06-10 | 6 | -3/+9 |
|
|
* | Argh. "integer" is a very confusing word ;) | Georg Brandl | 2006-06-08 | 1 | -2/+2 |
|
|
* | Bug #1502750: Fix getargs "i" format to use LONG_MIN and LONG_MAX for bounds ... | Georg Brandl | 2006-06-08 | 1 | -2/+2 |
|
|
* | _PySys_Init(): It's rarely a good idea to size a buffer to the | Tim Peters | 2006-06-06 | 1 | -1/+1 |
|
|
* | Add 3 more bytes to a buffer to cover constants in string and null byte on to... | Brett Cannon | 2006-06-05 | 1 | -1/+1 |
|
|
* | Revert revisions: | Tim Peters | 2006-06-04 | 4 | -170/+4 |
|
|
* | Patch #1346214: correctly optimize away "if 0"-style stmts | Georg Brandl | 2006-06-04 | 2 | -15/+49 |
|
|
* | clean up function declarations to conform to PEP-7 style. | Andrew MacIntyre | 2006-06-04 | 3 | -22/+44 |
|
|
* | Patch #1454481: Make thread stack size runtime tunable. | Andrew MacIntyre | 2006-06-04 | 4 | -4/+170 |
|
|
* | [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). | Armin Rigo | 2006-06-01 | 1 | -2/+13 |
|
|
* | Convert more modules to METH_VARARGS. | Georg Brandl | 2006-05-29 | 1 | -5/+3 |
|
|
* | Make use of METH_O and METH_NOARGS where possible. | Georg Brandl | 2006-05-29 | 1 | -2/+2 |
|
|
* | Fix compiler warning. | Georg Brandl | 2006-05-29 | 1 | -1/+1 |
|
|
* | Handle PyMem_Malloc failure in pystrtod.c. Closes #1494671. | Georg Brandl | 2006-05-29 | 1 | -0/+7 |
|
|
* | Fix #1494605. | Georg Brandl | 2006-05-29 | 1 | -1/+2 |
|
|
* | Correct None refcount issue in Mac modules. (Are they | Georg Brandl | 2006-05-28 | 1 | -1/+1 |
|
|
* | The empty string is a valid import path. | Georg Brandl | 2006-05-28 | 1 | -2/+4 |
|
|
* | PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-paste | Tim Peters | 2006-05-28 | 2 | -18/+23 |
|
|
* | Conversion of exceptions over from faked-up classes to new-style C types. | Richard Jones | 2006-05-27 | 3 | -2056/+23 |
|
|
* | needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in- | Fredrik Lundh | 2006-05-27 | 1 | -60/+55 |
|
|
* | Patch 1145039. | Tim Peters | 2006-05-26 | 1 | -41/+56 |
|
|
* | Replace Py_BuildValue("OO") by PyTuple_Pack. | Georg Brandl | 2006-05-26 | 2 | -4/+4 |
|
|
* | Need for speed: Patch #921466 : sys.path_importer_cache is now used to cache ... | Georg Brandl | 2006-05-26 | 1 | -2/+30 |
|
|
* | Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers, | Fredrik Lundh | 2006-05-26 | 1 | -1/+1 |
|
|
* | needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive" | Fredrik Lundh | 2006-05-26 | 1 | -15/+23 |
|
|
* | needforspeed: added Py_LOCAL macro, based on the LOCAL macro used | Fredrik Lundh | 2006-05-26 | 1 | -53/+53 |
|
|
* | Swap out bare malloc()/free() use for PyMem_MALLOC()/PyMem_FREE() . | Brett Cannon | 2006-05-25 | 1 | -2/+2 |
|
|
* | Replace PyObject_CallFunction calls with only object args | Georg Brandl | 2006-05-25 | 2 | -4/+4 |
|
|
* | A new table to help string->integer conversion was added yesterday to | Tim Peters | 2006-05-25 | 1 | -30/+2 |
|
|
* | Update graminit.c for the fix for #1488915, Multiple dots in relative import | Thomas Wouters | 2006-05-25 | 1 | -20/+15 |
|
|
* | Replace tab inside comment with space. | Walter Dörwald | 2006-05-25 | 1 | -1/+1 |
|
|
* | Bug #1334662 / patch #1335972: int(string, base) wrong answers. | Tim Peters | 2006-05-23 | 1 | -88/+178 |
|
|
* | Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. | Richard Jones | 2006-05-23 | 1 | -17/+17 |
|
|
* | PyErr_NewException now accepts a tuple of base classes as its | Georg Brandl | 2006-05-23 | 1 | -3/+10 |
|
|
* | Patch #1492356: Port to Windows CE (patch set 1). | Martin v. Löwis | 2006-05-22 | 1 | -2/+2 |
|
|
* | Oops, I forgot to include this file in the last commit (46046): | Neal Norwitz | 2006-05-19 | 1 | -2/+2 |
|
|
* | Fix #1474677, non-keyword argument following keyword. | Neal Norwitz | 2006-05-19 | 1 | -0/+5 |
|
|
* | Fix #132 from Coverity, retval could have been derefed | Neal Norwitz | 2006-05-19 | 1 | -0/+4 |
|
|