| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #494783: Rename cmp_op enumerators. | Martin v. Löwis | 2002-01-01 | 1 | -14/+14 |
|
|
* | Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code | Jeremy Hylton | 2001-12-13 | 1 | -3/+3 |
|
|
* | SF bug #488687 reported by Neal Norwitz | Jeremy Hylton | 2001-12-04 | 1 | -1/+1 |
|
|
* | code_repr(), com_addop_varname(), com_list_comprehension(), | Barry Warsaw | 2001-11-28 | 1 | -32/+42 |
|
|
* | Fixes for possible buffer overflows in sprintf() usages. | Marc-André Lemburg | 2001-11-28 | 1 | -1/+1 |
|
|
* | Use PyObject_CheckReadBuffer(). | Jeremy Hylton | 2001-11-09 | 1 | -11/+2 |
|
|
* | Fix SF buf #480096: Assign to __debug__ still allowed | Jeremy Hylton | 2001-11-09 | 1 | -2/+7 |
|
|
* | Part of SF bug #478003 possible memory leaks in err handling. | Tim Peters | 2001-11-04 | 1 | -1/+4 |
|
|
* | Fix for SF bug [ #471928 ] global made w/nested list comprehensions | Jeremy Hylton | 2001-10-18 | 1 | -19/+51 |
|
|
* | Fix computation of stack depth for classdef and closures. | Jeremy Hylton | 2001-10-17 | 1 | -44/+44 |
|
|
* | Very subtle syntax change: in a list comprehension, the testlist in | Guido van Rossum | 2001-10-15 | 1 | -0/+1 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 1 | -1/+1 |
|
|
* | Supply code objects a new-style tp_members slot and tp_getattr impl. | Jeremy Hylton | 2001-09-14 | 1 | -16/+34 |
|
|
* | SF bug [#458941] Looks like a unary minus bug. | Tim Peters | 2001-09-07 | 1 | -16/+49 |
|
|
* | When re-writing a factor containing a unary negation of a literal, only | Fred Drake | 2001-08-30 | 1 | -0/+3 |
|
|
* | Removed unreachable goto statement to silence SGI compiler. | Sjoerd Mullender | 2001-08-30 | 1 | -1/+0 |
|
|
* | If an integer constant can't be generated from an integer literal | Jeremy Hylton | 2001-08-27 | 1 | -5/+2 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -13/+25 |
|
|
* | Fix SF bug [ #450909 ] __future__.division fails at prompt | Jeremy Hylton | 2001-08-14 | 1 | -2/+6 |
|
|
* | SF Patch [ 429024 ] deal with some unary ops at compile time | Jeremy Hylton | 2001-08-12 | 1 | -3/+66 |
|
|
* | Remove st_nested_scopes from struct symtable, | Jeremy Hylton | 2001-08-11 | 1 | -130/+46 |
|
|
* | st_nested_scopes was uninitialized trash. Jeremy should fix in a better | Tim Peters | 2001-08-11 | 1 | -0/+6 |
|
|
* | Refactor future feature handling | Jeremy Hylton | 2001-08-10 | 1 | -27/+4 |
|
|
* | Implement PEP 238 in its (almost) full glory. | Guido van Rossum | 2001-08-08 | 1 | -4/+25 |
|
|
* | Another bug fix for recent import * warning (caught by Thomas Wouters) | Jeremy Hylton | 2001-08-06 | 1 | -3/+3 |
|
|
* | Fix error message for import * in function/class scope | Jeremy Hylton | 2001-08-06 | 1 | -1/+1 |
|
|
* | Fix SF bug [ #445474 ] warn about import * inside functions | Jeremy Hylton | 2001-08-06 | 1 | -0/+5 |
|
|
* | jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base' | Guido van Rossum | 2001-07-16 | 1 | -0/+1 |
|
|
* | Part way to allowing "from __future__ import generators" to communicate | Tim Peters | 2001-07-16 | 1 | -4/+13 |
|
|
* | Another "if 0:" hack, this time to complain about otherwise invisible | Tim Peters | 2001-06-28 | 1 | -2/+61 |
|
|
* | SF bug #436207: "if 0: yield x" is ignored. | Tim Peters | 2001-06-26 | 1 | -1/+33 |
|
|
* | Change the semantics of "return" in generators, as discussed on the | Tim Peters | 2001-06-23 | 1 | -25/+10 |
|
|
* | Disallow 'yield' in a 'try' block when there's a 'finally' clause. | Tim Peters | 2001-06-23 | 1 | -0/+10 |
|
|
* | Merging the gen-branch into the main line, at Guido's direction. Yay! | Tim Peters | 2001-06-18 | 1 | -9/+51 |
|
|
* | SF bug 430991: wrong co_lnotab | Tim Peters | 2001-06-09 | 1 | -10/+54 |
|
|
* | SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanup | Tim Peters | 2001-05-09 | 1 | -2/+0 |
|
|
* | Several small changes. Mostly reformatting, adding parens. | Jeremy Hylton | 2001-05-08 | 1 | -10/+11 |
|
|
* | Fix 2.1 nested scopes crash reported by Evan Simpson | Jeremy Hylton | 2001-04-27 | 1 | -6/+20 |
|
|
* | Iterators phase 1. This comprises: | Guido van Rossum | 2001-04-20 | 1 | -18/+6 |
|
|
* | Make some private symbols static. | Guido van Rossum | 2001-04-14 | 1 | -1/+2 |
|
|
* | Warn when assigning to __debug__ instead of raising an error. | Jeremy Hylton | 2001-04-09 | 1 | -7/+2 |
|
|
* | Make it illegal to assign to __debug__ as per Guido's request. | Jeremy Hylton | 2001-03-23 | 1 | -1/+12 |
|
|
* | Set the line number correctly for a nested function with an exec or | Jeremy Hylton | 2001-03-22 | 1 | -2/+5 |
|
|
* | Make error messages clearer for illegal combinations of nested | Jeremy Hylton | 2001-03-22 | 1 | -15/+36 |
|
|
* | If a code object is compiled with nested scopes, define the CO_NESTED flag. | Jeremy Hylton | 2001-03-22 | 1 | -0/+2 |
|
|
* | Update PyNode_CompileSymtable() to understand future statements | Jeremy Hylton | 2001-03-21 | 1 | -9/+15 |
|
|
* | Fix PyFrame_FastToLocals() and counterpart to deal with cells and | Jeremy Hylton | 2001-03-21 | 1 | -51/+69 |
|
|
* | Fixup handling of free variables in methods when the class scope also | Jeremy Hylton | 2001-03-20 | 1 | -3/+12 |
|
|
* | Fix crashes in nested list comprehensions | Jeremy Hylton | 2001-03-19 | 1 | -8/+10 |
|
|
* | Refactored the warning-issuing code more. | Guido van Rossum | 2001-03-02 | 1 | -11/+17 |
|
|