Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Report errors finding source files to execute more nicely. Fixes issue #23. | Ned Batchelder | 2009-10-25 | 1 | -0/+3 |
| | |||||
* | CamelCase looks weird, switch to underscore_separated. | Ned Batchelder | 2009-10-16 | 1 | -1/+1 |
| | |||||
* | The best way to get py3k support: same source runs on both, with some ↵ | Ned Batchelder | 2009-09-22 | 1 | -1/+3 |
| | | | | contortions. | ||||
* | Py3k: bytes vs. strings, and one more print statement. | Ned Batchelder | 2009-07-08 | 1 | -2/+2 |
| | |||||
* | Various Py3k fixes: remove gratuitous print, don't test the print statement, ↵ | Ned Batchelder | 2009-07-08 | 1 | -1/+1 |
| | | | | deal with __cmp__ ugliness, etc. | ||||
* | When executing files, open them in Universal Newline mode, just as Python ↵ | Ned Batchelder | 2009-06-27 | 1 | -0/+11 |
| | | | | itself does. Makes it possible to run Python from Windows on Mac, for example. | ||||
* | More docstrings | Ned Batchelder | 2009-05-09 | 1 | -0/+1 |
| | |||||
* | Also make __builtins__ available in main programs. | Ned Batchelder | 2009-05-09 | 1 | -1/+4 |
| | |||||
* | Change run_python_file again so that it doesn't produce compiled turds in ↵ | Ned Batchelder | 2009-05-09 | 1 | -16/+10 |
| | | | | the file system. | ||||
* | makeFile is more useful if it doesn't append .py | Ned Batchelder | 2009-05-08 | 1 | -0/+14 |
| | |||||
* | Line length < 80. | Ned Batchelder | 2009-04-19 | 1 | -1/+2 |
| | |||||
* | Commonalize more of the test case code. | Ned Batchelder | 2009-04-18 | 1 | -18/+7 |
| | |||||
* | Finally realized that unit test classes should be named like any other ↵ | Ned Batchelder | 2009-04-17 | 1 | -1/+1 |
| | | | | class: after the instance they create. | ||||
* | Pylint tweaks | Ned Batchelder | 2009-04-12 | 1 | -2/+4 |
| | |||||
* | Even better execution of main files. | Ned Batchelder | 2009-04-04 | 1 | -3/+28 |
| | |||||
* | Factor execfile out of cmdline, so that we can call python main programs ↵ | Ned Batchelder | 2009-04-03 | 1 | -0/+19 |
properly: now they get the correct value for __file__. |