| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | import compile function form pycodegen | Jeremy Hylton | 2000-03-06 | 1 | -0/+4 |
|
|
* | rename compile.py to pycodegen.py | Jeremy Hylton | 2000-03-06 | 1 | -176/+25 |
|
|
* | add a doc string | Jeremy Hylton | 2000-03-06 | 1 | -0/+20 |
|
|
* | fix import to refer to compiler package | Jeremy Hylton | 2000-03-06 | 1 | -1/+1 |
|
|
* | revise arguments for addCode method on lnotab. take several numbers | Jeremy Hylton | 2000-03-06 | 1 | -10/+13 |
|
|
* | change node Classdef to Class | Jeremy Hylton | 2000-03-06 | 2 | -24/+25 |
|
|
* | factor out the tree walking/visitor code that was in compile.py | Jeremy Hylton | 2000-03-06 | 1 | -0/+127 |
|
|
* | Defer all the work to idle.py, which has recently become too | Guido van Rossum | 2000-03-06 | 1 | -2/+1 |
|
|
* | In getdef(), don't die when the section doesn't exist. | Guido van Rossum | 2000-03-06 | 1 | -2/+2 |
|
|
* | Don't use 1.6-isms (s.startswith()) -- we want to distribute this | Guido van Rossum | 2000-03-06 | 2 | -4/+4 |
|
|
* | superceded by IdleConf/config.txt | Jeremy Hylton | 2000-03-03 | 1 | -19/+0 |
|
|
* | migrate to use of IdleConf and config files to set options | Jeremy Hylton | 2000-03-03 | 6 | -86/+51 |
|
|
* | default to cwd if os.environ['HOME'] does not exist | Jeremy Hylton | 2000-03-03 | 1 | -2/+6 |
|
|
* | a ConfigParser for idle and three configuration files | Jeremy Hylton | 2000-03-03 | 4 | -0/+187 |
|
|
* | Patch by Tim Peters: | Guido van Rossum | 2000-03-03 | 1 | -9/+11 |
|
|
* | paren matching extension. warning: in current version of IDLE, can | Jeremy Hylton | 2000-03-02 | 1 | -0/+193 |
|
|
* | Correct type error in getopt.error handling code. | Guido van Rossum | 2000-02-29 | 1 | -1/+1 |
|
|
* | Script by Tim Peters to discover illegal append() calls. | Guido van Rossum | 2000-02-29 | 1 | -0/+168 |
|
|
* | Fix multi-arg append(). | Guido van Rossum | 2000-02-29 | 1 | -1/+1 |
|
|
* | Two buglet fixes. Peter Funk caught the bug in make_escapes: | Barry Warsaw | 2000-02-27 | 1 | -7/+9 |
|
|
* | Changes submitted by Peter Funk (some fixes/additions by B.Warsaw) to | Barry Warsaw | 2000-02-26 | 1 | -40/+140 |
|
|
* | Deleting tabpolice.py; it was superceded by tabnanny.py long ago. | Guido van Rossum | 2000-02-23 | 1 | -104/+0 |
|
|
* | Moved tabnanny.py to standard library status. | Guido van Rossum | 2000-02-23 | 1 | -368/+0 |
|
|
* | Added tabnanny.py, by Tim Peters, formerly from Tools/scripts, to the | Guido van Rossum | 2000-02-23 | 1 | -0/+4 |
|
|
* | Added a new command: Check module (Alt-F5) It does a full syntax check | Guido van Rossum | 2000-02-22 | 1 | -9/+82 |
|
|
* | satisfy the tabnanny (thanks to MH for noticing the problem) | Jeremy Hylton | 2000-02-21 | 2 | -98/+98 |
|
|
* | changes to _lookupName | Jeremy Hylton | 2000-02-17 | 1 | -14/+13 |
|
|
* | the previous quick hack to fix def foo((x,y)) failed on some cases | Jeremy Hylton | 2000-02-17 | 2 | -16/+48 |
|
|
* | add varargs and kwargs flags to Lambda nodes | Jeremy Hylton | 2000-02-17 | 1 | -0/+5 |
|
|
* | satisfy the tabnanny | Jeremy Hylton | 2000-02-17 | 1 | -197/+199 |
|
|
* | Add primitive customization of window size and font. | Guido van Rossum | 2000-02-17 | 1 | -3/+19 |
|
|
* | The 0.5 release happened on 2/15, not on 2/14. :-) | Guido van Rossum | 2000-02-16 | 1 | -1/+1 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | A bit restructured. | Guido van Rossum | 2000-02-15 | 1 | -15/+40 |
|
|
* | Oops, somehow the initial checkin was botched. :-( | Guido van Rossum | 2000-02-15 | 1 | -0/+336 |
|
|
* | Added some clarifications. | Guido van Rossum | 2000-02-15 | 1 | -4/+8 |
|
|
* | Temporarily add a copy here for easy distribution. | Guido van Rossum | 2000-02-15 | 1 | -0/+0 |
|
|
* | More changes. | Guido van Rossum | 2000-02-15 | 1 | -1/+20 |
|
|
* | Notice status back and stack viewer. | Guido van Rossum | 2000-02-15 | 1 | -0/+5 |
|
|
* | Support for Moshe's status bar. | Guido van Rossum | 2000-02-15 | 1 | -2/+20 |
|
|
* | Status bar code -- by Moshe Zadka. | Guido van Rossum | 2000-02-15 | 1 | -0/+32 |
|
|
* | Adding the old stack viewer implementation back, for the debugger. | Guido van Rossum | 2000-02-15 | 1 | -0/+276 |
|
|