| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #6603: Fix --with-tsc build failures on x86-64 that resulted | Mark Dickinson | 2009-10-31 | 1 | -1/+19 |
|
|
* | small optimization: avoid popping the current block until we have to | Benjamin Peterson | 2009-07-01 | 1 | -5/+5 |
|
|
* | use stack macros | Benjamin Peterson | 2009-06-28 | 1 | -2/+2 |
|
|
* | add two generic macros for peeking and setting in the stack | Benjamin Peterson | 2009-06-28 | 1 | -0/+2 |
|
|
* | Issue #5330: C functions called with keyword arguments were not reported by | Antoine Pitrou | 2009-05-30 | 1 | -2/+16 |
|
|
* | add a SETUP_WITH opcode | Benjamin Peterson | 2009-05-25 | 1 | -0/+46 |
|
|
* | Issue #6042: | Jeffrey Yasskin | 2009-05-23 | 1 | -14/+11 |
|
|
* | Issue 5954, PyFrame_GetLineNumber: | Jeffrey Yasskin | 2009-05-08 | 1 | -1/+1 |
|
|
* | Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with | Jeffrey Yasskin | 2009-02-28 | 1 | -17/+67 |
|
|
* | Issue 5176: special-case string formatting in BINARY_MODULO implementation. T... | Collin Winter | 2009-02-20 | 1 | -1/+4 |
|
|
* | Silence 'arg may be used uninitialized in this function' warning from gcc. | Mark Dickinson | 2009-02-08 | 1 | -1/+1 |
|
|
* | fix building the core with --disable-unicode | Benjamin Peterson | 2009-01-25 | 1 | -4/+15 |
|
|
* | allow unicode keyword arguments for the ** syntax #4978 | Benjamin Peterson | 2009-01-20 | 1 | -12/+33 |
|
|
* | Issue 4293: Make Py_AddPendingCall() thread safe | Kristján Valur Jónsson | 2009-01-09 | 1 | -22/+146 |
|
|
* | Issue #2183: Simplify and optimize bytecode for list comprehensions. | Antoine Pitrou | 2008-12-17 | 1 | -2/+1 |
|
|
* | #4559: When a context manager's __exit__() method returns an object whose | Amaury Forgeot d'Arc | 2008-12-10 | 1 | -6/+13 |
|
|
* | Issue 4597: Fix several cases in EvalFrameEx where an exception could be | Jeffrey Yasskin | 2008-12-08 | 1 | -3/+14 |
|
|
* | Speed up Python (according to pybench and 2to3-on-itself) by 1-2% by caching | Jeffrey Yasskin | 2008-12-03 | 1 | -1/+10 |
|
|
* | Raymond's patch for #1819: speedup function calls with named parameters | Antoine Pitrou | 2008-07-25 | 1 | -22/+30 |
|
|
* | Apply patch for 874900: threading module can deadlock after fork | Jesse Noller | 2008-07-16 | 1 | -0/+20 |
|
|
* | Update comment on prediction macros. | Raymond Hettinger | 2008-07-05 | 1 | -11/+13 |
|
|
* | Add a comment about incref'ing w. | Georg Brandl | 2008-07-01 | 1 | -0/+2 |
|
|
* | #3242: fix a crash in "print", if sys.stdout is set to a custom object, | Amaury Forgeot d'Arc | 2008-07-01 | 1 | -0/+2 |
|
|
* | 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 |
|
|