| 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 |
|
|
* | Rewrote 'newer_pairwise(): more natural (and incompatible) interface, | Greg Ward | 2000-03-06 | 1 | -12/+13 |
|
|
* | Serious overhaul of the C compiler interface and the two classes that | Greg Ward | 2000-03-06 | 3 | -362/+400 |
|
|
* | Don't pass 'keep_dir' to 'compile()' method of CCompiler -- no longer used. | Greg Ward | 2000-03-06 | 1 | -1/+0 |
|
|
* | Don't pass 'keep_dir' to 'compile()' method of CCompiler -- no longer used. | Greg Ward | 2000-03-06 | 1 | -3/+4 |
|
|
* | allow comments beginning with ; in key: value as well as key = value | Jeremy Hylton | 2000-03-03 | 1 | -1/+1 |
|
|
* | Typo fix. | Greg Ward | 2000-03-03 | 1 | -1/+1 |
|
|
* | Fixed 'mkpath()' to accept empty string silently (it's just the current dir). | Greg Ward | 2000-03-03 | 1 | -9/+11 |
|
|
* | Renamed 'build_lib' command to 'build_clib': | Greg Ward | 2000-03-02 | 4 | -209/+7 |
|
|
* | Changed '__rcsid__' to '__revision__'. | Greg Ward | 2000-03-02 | 20 | -20/+20 |
|
|
* | If the "build_lib" command built any C libraries, link with them all | Greg Ward | 2000-03-02 | 1 | -3/+12 |
|
|
* | Added command description. | Greg Ward | 2000-03-02 | 2 | -28/+96 |
|
|
* | In the 'compile()' method: preserve the directory portion of source | Greg Ward | 2000-03-02 | 1 | -2/+7 |
|
|
* | In compile/link methods: ensure that the directory we expect to be writing to | Greg Ward | 2000-03-01 | 1 | -1/+6 |
|
|
* | Added 'mkpath()' method: convenience wrapper around 'util.mkpath()' that adds | Greg Ward | 2000-03-01 | 1 | -1/+4 |
|
|
* | Added call to 'ensure_ready()' on the command object in | Greg Ward | 2000-03-01 | 1 | -0/+1 |
|
|
* | Added 'get_platform()' to construct a string that identifies the current | Greg Ward | 2000-03-01 | 1 | -1/+19 |
|
|
* | Build reorg: | Greg Ward | 2000-03-01 | 1 | -16/+41 |
|
|
* | Build reorg: | Greg Ward | 2000-03-01 | 1 | -12/+43 |
|
|
* | Build reorg: change 'build_dir' option to 'build_lib'. | Greg Ward | 2000-03-01 | 1 | -8/+8 |
|
|
* | Remove some redundant logic from walk() -- there's no need to check | Guido van Rossum | 2000-02-29 | 1 | -2/+0 |
|
|
* | Fix a typo in a comment | Andrew M. Kuchling | 2000-02-29 | 1 | -1/+1 |
|
|
* | Fix comments relating to the specific regexs used to parse section and | Fred Drake | 2000-02-28 | 1 | -2/+2 |
|
|
* | Patch by Piers Lauder, who writes: | Guido van Rossum | 2000-02-28 | 1 | -5/+6 |
|
|
* | (Finally!) Changes related to the ConfigParser/INI-file topics | Fred Drake | 2000-02-28 | 1 | -5/+11 |
|
|
* | Simple changes by Gerrit Holl - move author acknowledgements out of | Guido van Rossum | 2000-02-28 | 9 | -43/+46 |
|
|
* | Patch by Gerrit Holl to avoid doing two stat() calls in a row in walk(). | Guido van Rossum | 2000-02-28 | 1 | -1/+2 |
|
|
* | Fix a typo in Barry's checkin. | Guido van Rossum | 2000-02-27 | 1 | -1/+1 |
|
|
* | Fixed a multi-arg append() call, discovered by Mark Favas. | Guido van Rossum | 2000-02-27 | 1 | -4/+4 |
|
|
* | Try to deal with pre-1.5.2 IOError exception objects. | Greg Ward | 2000-02-26 | 1 | -2/+6 |
|
|
* | Unfinished, untested implementation of the lovely baroque installation scheme | Greg Ward | 2000-02-26 | 4 | -183/+118 |
|
|
* | Changes inspired by Randall Hooper to allow callbacks when an | Barry Warsaw | 2000-02-25 | 1 | -4/+15 |
|
|
* | Test case for fork1() behavior. | Guido van Rossum | 2000-02-25 | 2 | -0/+55 |
|
|
* | Gerrit forgot to remove the "import string". | Guido van Rossum | 2000-02-25 | 1 | -2/+0 |
|
|
* | Gerrit Holl's patch to move attribution from the docstring to a | Fred Drake | 2000-02-25 | 1 | -4/+4 |
|
|
* | Fix a couple broken append() calls, spotted by Tim. | Guido van Rossum | 2000-02-25 | 1 | -4/+4 |
|
|
* | Fix a broken r.append(name, value) call, spotted by Tim. | Guido van Rossum | 2000-02-25 | 1 | -1/+1 |
|
|
* | Moshe Zadka: | Guido van Rossum | 2000-02-24 | 1 | -4/+77 |
|
|
* | Fix from est@hyperreal.org: missing initialize in 'find_defaults()'. | Greg Ward | 2000-02-24 | 1 | -0/+1 |
|
|
* | Mark Favas discovered this: getatime() accidentally returned the MTIME! | Guido van Rossum | 2000-02-24 | 1 | -1/+1 |
|
|
* | Piers Lauder: | Guido van Rossum | 2000-02-24 | 1 | -5/+5 |
|
|
* | Add tests to exercise sequence operations (multiplication, indexing, | Andrew M. Kuchling | 2000-02-23 | 1 | -0/+25 |
|
|
* | Added tabnanny.py, by Tim Peters, formerly from Tools/scripts, to the | Guido van Rossum | 2000-02-23 | 1 | -0/+4 |
|
|
* | satisfy the tabnanny (thanks to MH for noticing the problem) | Jeremy Hylton | 2000-02-21 | 2 | -98/+98 |
|
|