diff options
| author | Barry Warsaw <barry@python.org> | 1998-10-07 03:36:58 +0000 |
|---|---|---|
| committer | Barry Warsaw <barry@python.org> | 1998-10-07 03:36:58 +0000 |
| commit | 0926deacd5f4f3ef57d9b093b43c73ded2695578 (patch) | |
| tree | 1f014ed3435486ee2f9267bce27a1b7ca212d814 /Tools/pynche/pynche.pyw | |
| parent | c958043233e27d07cdcb6dc663eec7049a8626b0 (diff) | |
| download | cpython-git-0926deacd5f4f3ef57d9b093b43c73ded2695578.tar.gz | |
Moved the main pynche.py file to Main.py. Added minimal driver
scripts pynche.py and pynche.pyw for Unix and Windows startup
respectively. Document the .pyw file in the README.
Diffstat (limited to 'Tools/pynche/pynche.pyw')
| -rwxr-xr-x | Tools/pynche/pynche.pyw | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tools/pynche/pynche.pyw b/Tools/pynche/pynche.pyw new file mode 100755 index 0000000000..6dfc8fed71 --- /dev/null +++ b/Tools/pynche/pynche.pyw @@ -0,0 +1,7 @@ +#! /usr/bin/env python + +"""Run this file under Windows to inhibit the console window. +Run the file pynche.py under Unix or when debugging under Windows. +""" +import Main +Main.main() |
