| Commit message (Expand) | Author | Age | Files | Lines |
* | support for arglists with implicit tuple unpacks | Jeremy Hylton | 2000-02-16 | 1 | -15/+61 |
|
|
* | more robust assignment of lineno for keyword args | Jeremy Hylton | 2000-02-16 | 1 | -3/+3 |
|
|
* | fix argcount generation for arg lists containing tuple unpacks | Jeremy Hylton | 2000-02-16 | 1 | -2/+13 |
|
|
* | add flatten helper function | Jeremy Hylton | 2000-02-16 | 1 | -0/+11 |
|
|
* | finish first impl of code generator | Jeremy Hylton | 2000-02-15 | 1 | -12/+70 |
|
|
* | fix creation of Ellipsis node | Jeremy Hylton | 2000-02-15 | 1 | -1/+1 |
|
|
* | add a little debugging support when new.code raises SystemError | Jeremy Hylton | 2000-02-15 | 1 | -5/+21 |
|
|
* | no real change -- testing syncmail | Jeremy Hylton | 2000-02-15 | 1 | -1/+1 |
|
|
* | add line numbers to nodes in the except clause (when possible) | Jeremy Hylton | 2000-02-15 | 1 | -1/+3 |
|
|
* | tidy up tryexcept and tryfinally nodes | Jeremy Hylton | 2000-02-15 | 1 | -14/+20 |
|
|
* | edit a doc string | Jeremy Hylton | 2000-02-14 | 1 | -1/+6 |
|
|
* | get rid of spurious print | Jeremy Hylton | 2000-02-14 | 1 | -1/+0 |
|
|
* | looks like everything is working except for try/except (pystone | Jeremy Hylton | 2000-02-14 | 1 | -6/+14 |
|
|
* | LeftShift & RightShift: fix reprs, change attr names to left and right | Jeremy Hylton | 2000-02-14 | 1 | -10/+10 |
|
|
* | Fix the question marks next to the expansions of some of the | Fred Drake | 2000-02-14 | 1 | -2/+2 |
|
|
* | rename several of the generic attribute names for nodes. new node attrs are: | Jeremy Hylton | 2000-02-14 | 1 | -12/+12 |
|
|
* | (), [], and {} should not be represented as constant expressions, they | Jeremy Hylton | 2000-02-14 | 1 | -3/+3 |
|
|
* | split compile.py into two files | Jeremy Hylton | 2000-02-14 | 2 | -536/+623 |
|
|
* | change MODULE_NAMESPACE/FUNCTION_NAMESPACE stuff to have a single flag | Jeremy Hylton | 2000-02-12 | 1 | -34/+87 |
|
|
* | add support for Lambda nodes | Jeremy Hylton | 2000-02-11 | 1 | -8/+28 |
|
|
* | Ditched '_find_SET()', since it was a no-value-added wrapper around | Greg Ward | 2000-02-11 | 1 | -23/+14 |
|
|
* | Latest patch from Thomas Heller/Robin Becker: | Greg Ward | 2000-02-11 | 1 | -47/+68 |
|
|
* | add loop handling via | Jeremy Hylton | 2000-02-10 | 1 | -13/+63 |
|
|
* | add an __len__ to Set and Stack | Jeremy Hylton | 2000-02-10 | 1 | -0/+4 |
|
|
* | Added new exception classes: | Barry Warsaw | 2000-02-10 | 1 | -28/+81 |
|
|
* | add namespace attr to CodeGenerator, can be either MODULE_NAMESPACE or | Jeremy Hylton | 2000-02-10 | 1 | -22/+35 |
|
|
* | Untabify to pass the -tt test. | Fred Drake | 2000-02-10 | 8 | -807/+807 |
|
|
* | Detabify. | Fred Drake | 2000-02-10 | 1 | -28/+28 |
|
|
* | Make this pass the -tt test. | Fred Drake | 2000-02-10 | 1 | -8/+8 |
|
|
* | Stylistic changes to the registry-grovelling code: code formatting, changed | Greg Ward | 2000-02-10 | 1 | -23/+51 |
|
|
* | Typecheck 'output_dir' argument to compile/link methods. | Greg Ward | 2000-02-10 | 1 | -0/+6 |
|
|
* | Path from Thomas Heller: resurrect the .def file kludge while preserving the | Greg Ward | 2000-02-10 | 1 | -2/+14 |
|
|
* | Patch from Thomas heller: | Greg Ward | 2000-02-10 | 1 | -11/+33 |
|
|
* | add ExampleASTVisitor: | Jeremy Hylton | 2000-02-10 | 1 | -55/+199 |
|
|
* | add remove method to set | Jeremy Hylton | 2000-02-10 | 1 | -0/+2 |
|
|
* | Added 'debug' option, and changed compile/link calls to use it. | Greg Ward | 2000-02-09 | 3 | -10/+30 |
|
|
* | Added 'debug' option (just there for 'build_ext' and 'build_lib' commands | Greg Ward | 2000-02-09 | 1 | -0/+3 |
|
|
* | Added 'debug' flags to compile and link methods, and added dummy code for | Greg Ward | 2000-02-09 | 1 | -3/+13 |
|
|
* | Added 'debug' flags to compile and link methods, and modified code to add | Greg Ward | 2000-02-09 | 1 | -1/+13 |
|
|
* | Added 'debug' flag to compile and link method signatures. | Greg Ward | 2000-02-09 | 1 | -23/+43 |
|
|
* | add optional verbose arg to walk function. it overrides the global | Jeremy Hylton | 2000-02-08 | 1 | -29/+137 |
|
|
* | make all unary operators have a single child node called expr | Jeremy Hylton | 2000-02-08 | 1 | -4/+4 |
|
|
* | add spaces to comparison names is not and not in to match dis | Jeremy Hylton | 2000-02-08 | 1 | -2/+2 |
|
|
* | now produces valid pyc files for a least a trivial subset of the | Jeremy Hylton | 2000-02-08 | 1 | -80/+306 |
|
|
* | constants from transformer | Jeremy Hylton | 2000-02-08 | 1 | -0/+9 |
|
|
* | move constants out of transformer so that they can be shared with ast | Jeremy Hylton | 2000-02-08 | 2 | -8/+9 |
|
|
* | get_config_h_filename(): Support NT as well as Posix systems. | Fred Drake | 2000-02-08 | 1 | -10/+14 |
|
|
* | Revised version (thank to Thomas Heller and Robin Becker) that tries a lot | Greg Ward | 2000-02-08 | 1 | -3/+98 |
|
|
* | Ditch .def file kludge for (much smaller) /export option kludge. | Greg Ward | 2000-02-08 | 1 | -12/+1 |
|
|
* | Added test case for accessing gsbm database by key after it's closed; | Fred Drake | 2000-02-07 | 1 | -1/+7 |
|
|