diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-08-05 05:43:20 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-08-05 05:43:20 (GMT) |
commit | 45e5e72eb8488d3df4c183d4e91bf27c19b08b76 (patch) | |
tree | bd40af841d43a3da32940299f571179c06cac5a1 /Tools/scripts | |
parent | b39fa0e0fa84d4fc52388addd9e552f7a1b9152f (diff) | |
download | cpython-45e5e72eb8488d3df4c183d4e91bf27c19b08b76.zip cpython-45e5e72eb8488d3df4c183d4e91bf27c19b08b76.tar.gz cpython-45e5e72eb8488d3df4c183d4e91bf27c19b08b76.tar.bz2 |
Rename pydoc.pyw to pydocgui.pyw: Since we changed Python to allow .pyw
files to satisfy imports, pydoc.pyw was just importing itself!
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/pydoc.pyw | 2 | ||||
-rw-r--r-- | Tools/scripts/pydocgui.pyw | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Tools/scripts/pydoc.pyw b/Tools/scripts/pydoc.pyw deleted file mode 100755 index 66992f9..0000000 --- a/Tools/scripts/pydoc.pyw +++ /dev/null @@ -1,2 +0,0 @@ -import pydoc -pydoc.gui() diff --git a/Tools/scripts/pydocgui.pyw b/Tools/scripts/pydocgui.pyw new file mode 100644 index 0000000..61a8b89 --- /dev/null +++ b/Tools/scripts/pydocgui.pyw @@ -0,0 +1,5 @@ +# Note: this file must not be named pydoc.pyw, lest it just end up +# importing itself (Python began allowing import of .pyw files +# between 2.2a1 and 2.2a2). +import pydoc +pydoc.gui() |