| Commit message (Expand) | Author | Age | Files | Lines |
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -47/+47 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -47/+47 |
|
|
* | A little reformating of Py3k warnings | Benjamin Peterson | 2008-04-27 | 1 | -8/+8 |
|
|
* | Use PyErr_WarnPy3k throughout | Benjamin Peterson | 2008-04-27 | 1 | -2/+2 |
|
|
* | Make Py3k warnings consistent w.r.t. punctuation; also respect the | Georg Brandl | 2008-03-25 | 1 | -1/+1 |
|
|
* | Issue #2341: Add a Py3k warning when raising an exception that doesn't | Guido van Rossum | 2008-03-18 | 1 | -0/+9 |
|
|
* | Clean up the Py3k warnings for non-BaseException-subclasses a bit. We | Guido van Rossum | 2008-03-18 | 1 | -4/+6 |
|
|
* | - Issue #2371: Add a Py3k warning when catching an exception that | Guido van Rossum | 2008-03-18 | 1 | -0/+27 |
|
|
* | Speed up with statements by storing the __exit__ method on the stack instead ... | Nick Coghlan | 2008-03-07 | 1 | -24/+50 |
|
|
* | compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that in | Jeffrey Yasskin | 2008-03-03 | 1 | -0/+2 |
|
|
* | Reduce buffer size since we do not need 1k | Neal Norwitz | 2008-01-27 | 1 | -1/+1 |
|
|
* | Fix two crashers. | Guido van Rossum | 2008-01-23 | 1 | -1/+5 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. | Raymond Hettinger | 2007-12-18 | 1 | -1/+1 |
|
|
* | Speed-up dictionary constructor by about 10%. | Raymond Hettinger | 2007-12-18 | 1 | -0/+12 |
|
|
* | Silence a warning about an unsed variable in debug builds | Christian Heimes | 2007-12-14 | 1 | -2/+3 |
|
|
* | Fix typo. | Georg Brandl | 2007-12-05 | 1 | -1/+1 |
|
|
* | Merge from py3k branch: | Amaury Forgeot d'Arc | 2007-11-13 | 1 | -7/+12 |
|
|
* | Add build option for faster loop execution. | Raymond Hettinger | 2007-11-07 | 1 | -0/+11 |
|
|
* | Try harder to stay within the 79-column limit. There's still two places that ... | Thomas Wouters | 2007-09-20 | 1 | -44/+55 |
|
|
* | Whitespace cleanup. | Thomas Wouters | 2007-09-19 | 1 | -27/+27 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -1/+1 |
|
|
* | Patch #1686487: you can now pass any mapping after '**' in function calls. | Georg Brandl | 2007-05-21 | 1 | -10/+29 |
|
|
* | Remove an XXX that is unnecessary. | Georg Brandl | 2007-05-11 | 1 | -1/+0 |
|
|
* | Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed... | Kristján Valur Jónsson | 2007-04-13 | 1 | -1/+1 |
|
|
* | Patch #1682205: a TypeError while unpacking an iterable is no longer | Georg Brandl | 2007-03-21 | 1 | -5/+3 |
|
|
* | Patch #1674228: when assigning a slice (old-style), check for the | Georg Brandl | 2007-03-05 | 1 | -1/+1 |
|
|
* | Reformat long lines. | Jeremy Hylton | 2007-02-26 | 1 | -2/+4 |
|
|
* | Put declarations before code. | Jeremy Hylton | 2007-02-25 | 1 | -1/+1 |
|
|
* | Fix crash in exec when unicode filename can't be decoded. | Jeremy Hylton | 2007-02-25 | 1 | -0/+2 |
|
|
* | No more raising of string exceptions! | Brett Cannon | 2007-01-30 | 1 | -13/+34 |
|
|
* | SF# 1409443: Expand comment to cover the interaction between f->f_lasti and ... | Raymond Hettinger | 2007-01-06 | 1 | -1/+10 |
|
|
* | Forgot a case where the locals can now be a general mapping | Armin Rigo | 2006-11-29 | 1 | -1/+3 |
|
|
* | [Bug #1542016] Report PCALL_POP value. This makes the return value of sys.ca... | Andrew M. Kuchling | 2006-10-27 | 1 | -2/+2 |
|
|
* | Move/copy assert for tstate != NULL before first use. | Neal Norwitz | 2006-08-13 | 1 | -1/+7 |
|
|
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -9/+9 |
|
|
* | Whoops, how did that get in there. :-) Revert all the parts of 51227 that we... | Neal Norwitz | 2006-08-12 | 1 | -9/+0 |
|
|
* | Check returned pointer is valid. | Neal Norwitz | 2006-08-12 | 1 | -0/+9 |
|
|
* | Concatenation on a long string breaks (SF #1526585). | Armin Rigo | 2006-08-09 | 1 | -3/+9 |
|
|
* | 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 |
|
|
* | Patch #1495999: Part two of Windows CE changes. | Martin v. Löwis | 2006-06-10 | 1 | -1/+1 |
|
|
* | [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). | Armin Rigo | 2006-06-01 | 1 | -2/+13 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | Replace PyObject_CallFunction calls with only object args | Georg Brandl | 2006-05-25 | 1 | -1/+1 |
|
|
* | Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. | Richard Jones | 2006-05-23 | 1 | -17/+17 |
|
|