| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix #132 from Coverity, retval could have been derefed | Neal Norwitz | 2006-05-19 | 1 | -0/+4 |
|
|
* | Micro optimization. In the first case, we know that frame->f_exc_type | Neal Norwitz | 2006-05-09 | 1 | -3/+1 |
|
|
* | Fix more ssize_t issues. | Martin v. Löwis | 2006-04-22 | 1 | -2/+2 |
|
|
* | Teach Python/ceval.c's inlining of 'str += str' about Py_ssize_t sizes; this | Thomas Wouters | 2006-04-19 | 1 | -2/+2 |
|
|
* | Refactor: Move code that uses co_lnotab from ceval to codeobject | Jeremy Hylton | 2006-04-18 | 1 | -117/+14 |
|
|
* | low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations | Anthony Baxter | 2006-04-11 | 1 | -2/+2 |
|
|
* | SF Patch #1463867: Improved generator finalization to allow generators | Phillip J. Eby | 2006-04-10 | 1 | -0/+3 |
|
|
* | answer a question from a comment | Armin Rigo | 2006-03-28 | 1 | -3/+3 |
|
|
* | Fix a ssize_t issue | Neal Norwitz | 2006-03-23 | 1 | -1/+1 |
|
|
* | Um, I thought I'd already checked this in. | Guido van Rossum | 2006-03-10 | 1 | -22/+25 |
|
|
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -46/+22 |
|
|
* | SF #1444030: Fix several potential defects found by Coverity. | Hye-Shik Chang | 2006-03-07 | 1 | -1/+4 |
|
|
* | Use Py_ssize_t since we are working with list size below | Neal Norwitz | 2006-03-02 | 1 | -1/+1 |
|
|
* | Put back the essence of Jeremy's original XXX comment. | Thomas Wouters | 2006-03-01 | 1 | -1/+3 |
|
|
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 1 | -5/+5 |
|
|
* | Updates to the with-statement: | Guido van Rossum | 2006-02-28 | 1 | -6/+20 |
|
|
* | SF patch #1438387, PEP 328: relative and absolute imports. | Thomas Wouters | 2006-02-28 | 1 | -6/+17 |
|
|
* | Check the return code for PyErr_Warn() when warning about raising string | Brett Cannon | 2006-02-27 | 1 | -4/+5 |
|
|
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 1 | -7/+42 |
|
|
* | Bug #801349: document that start/stop/step slice arguments can be None | Georg Brandl | 2006-02-19 | 1 | -1/+1 |
|
|
* | Remove size constraints in SLICE opcodes. | Martin v. Löwis | 2006-02-17 | 1 | -16/+11 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -5/+8 |
|
|
* | Explain the clearing of the stack in a comment in Python/ceval.c's | Thomas Wouters | 2006-02-10 | 1 | -1/+2 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -2/+2 |
|
|
* | Fix some mods that got dropped from the AST merge | Neal Norwitz | 2005-10-21 | 1 | -2/+2 |
|
|
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -30/+15 |
|
|
* | clean-up tracing of C functions. In particular, don't call the trace func | Armin Rigo | 2005-09-20 | 1 | -26/+31 |
|
|
* | Port from the Python 2.4 branch, patches for SF bug # 900092, | Barry Warsaw | 2005-08-15 | 1 | -8/+14 |
|
|
* | PEP 342 implementation. Per Guido's comments, the generator throw() | Phillip J. Eby | 2005-08-02 | 1 | -3/+15 |
|
|
* | Fix signedness of various char variables to stop causing a warning under gcc 4. | Brett Cannon | 2005-06-25 | 1 | -1/+1 |
|
|
* | Add comments about PyThreadState and the usage of its fields. | Brett Cannon | 2005-06-25 | 1 | -0/+4 |
|
|
* | Make a handy macro, Py_DEFAULT_RECURSION_LIMIT to allow to define | Hye-Shik Chang | 2005-04-04 | 1 | -2/+5 |
|
|
* | Change the name of the macro used by --with-tsc builds to the less | Michael W. Hudson | 2005-01-18 | 1 | -29/+32 |
|
|
* | comment tweak | Skip Montanaro | 2005-01-08 | 1 | -1/+1 |
|
|
* | Hye-Shik Chang's fix for Bug 875692. | Kurt B. Kaiser | 2004-11-23 | 1 | -0/+6 |
|
|
* | SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick | Tim Peters | 2004-10-11 | 1 | -3/+6 |
|
|
* | SF bug #1014215: Unspecific errors with metaclass | Raymond Hettinger | 2004-09-16 | 1 | -4/+16 |
|
|
* | Centralize WITH_TSC processing. | Martin v. Löwis | 2004-08-29 | 1 | -37/+3 |
|
|
* | This is my patch: | Michael W. Hudson | 2004-08-12 | 1 | -1/+33 |
|
|
* | This was quite a dark bug in my recent in-place string concatenation | Armin Rigo | 2004-08-07 | 1 | -1/+1 |
|
|
* | SF patch #980695: efficient string concatenation | Raymond Hettinger | 2004-08-06 | 1 | -2/+91 |
|
|
* | Fix for the unfortunate fact that PyDict_GetItem and PyObject_GetItem | Michael W. Hudson | 2004-08-02 | 1 | -2/+4 |
|
|
* | Completed the patch for Bug #215126. | Raymond Hettinger | 2004-08-02 | 1 | -3/+3 |
|
|
* | Remove unused macros in .c files | Neal Norwitz | 2004-07-08 | 1 | -3/+0 |
|
|
* | This closes patch: | Michael W. Hudson | 2004-07-07 | 1 | -1/+1 |
|
|
* | SF Bug #215126: Over restricted type checking on eval() function | Raymond Hettinger | 2004-07-02 | 1 | -4/+16 |
|
|
* | Patch #966493: Cleanup generator/eval_frame exposure. | Martin v. Löwis | 2004-06-27 | 1 | -14/+6 |
|
|
* | Get ceval.c to compile again by moving declarations before other statments. | Raymond Hettinger | 2004-06-26 | 1 | -1/+2 |
|
|
* | Massive performance improvement for C extension and builtin tracing code | Nicholas Bastin | 2004-06-25 | 1 | -51/+27 |
|
|
* | Less ugly #ifdefs for C profiling fix | Nicholas Bastin | 2004-06-22 | 1 | -12/+5 |
|
|