Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Changes to make our project as welcoming as possible for new contributors. | Todd Leonhardt | 2017-02-26 | 1 | -3/+0 |
| | | | | | | | Changes include: 1) Added CONTRIBUTING.md with detailed instructions for how to contribute, which should be especially useful to those new to open source in general or GitHub in particular 2) Added CODE_OF_CONDUCT.md which sets ground rules for participants’ behavior and helps to facilitate a friendly, welcoming environment 3) Renamed the "example" directory to "examples" in the hope that one day soon there may be more than a single example ;-) | ||||
* | For do_py(), moved the definition of the run() command earlier. | Todd Leonhardt | 2017-01-11 | 1 | -0/+3 |
This is so that it will allow the user to run a Python script directly from the Cmd prompt even before an interactive Python shell has ever been invoked via: py run('script.py') This fixes a bug where it wouldn't allow that to occur until the user entered just "py" at the Cmd prompt. Also added a trivial Python script script.py to the example directory for the purposes of testing script execution. |