Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge from rjones-funccall branch. | Richard Jones | 2006-05-23 | 1 | -0/+1 |
| | | | | | | Applied patch zombie-frames-2.diff from sf patch 876206 with updates for Python 2.5 and also modified to retain the free_list to avoid the 67% slow-down in pybench recursion test. 5% speed up in function call pybench. | ||||
* | Refactor: Move code that uses co_lnotab from ceval to codeobject | Jeremy Hylton | 2006-04-18 | 1 | -0/+15 |
| | |||||
* | Don't abbreviate ABS, use long name ABSOLUTE. | Neal Norwitz | 2006-04-03 | 1 | -1/+1 |
| | |||||
* | from __future__ import with_statement addon for 'with', mostly written by | Thomas Wouters | 2006-02-28 | 1 | -0/+6 |
| | | | | Neal. | ||||
* | SF patch #1438387, PEP 328: relative and absolute imports. | Thomas Wouters | 2006-02-28 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | - IMPORT_NAME takes an extra argument from the stack: the relativeness of the import. Only passed to __import__ when it's not -1. - __import__() takes an optional 5th argument for the same thing; it __defaults to -1 (old semantics: try relative, then absolute) - 'from . import name' imports name (be it module or regular attribute) from the current module's *package*. Likewise, 'from .module import name' will import name from a sibling to the current module. - Importing from outside a package is not allowed; 'from . import sys' in a toplevel module will not work, nor will 'from .. import sys' in a (single-level) package. - 'from __future__ import absolute_import' will turn on the new semantics for import and from-import: imports will be absolute, except for from-import with dots. Includes tests for regular imports and importhooks, parser changes and a NEWS item, but no compiler-package changes or documentation changes. | ||||
* | Per discussion on python-dev, remove CO_GENERATOR_ALLOWED. Leave comment ↵ | Neal Norwitz | 2006-02-25 | 1 | -1/+4 |
| | | | | about not removing yet. | ||||
* | Generators have been permanent for a while. This comment is no longer ↵ | Neal Norwitz | 2006-02-19 | 1 | -6/+1 |
| | | | | applicable. | ||||
* | Use the newer names for APIs after the AST merge | Neal Norwitz | 2005-10-21 | 1 | -3/+3 |
| | |||||
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -0/+73 |
This change implements a new bytecode compiler, based on a transformation of the parse tree to an abstract syntax defined in Parser/Python.asdl. The compiler implementation is not complete, but it is in stable enough shape to run the entire test suite excepting two disabled tests. |