summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/pydocgui.pyw
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-08-05 05:43:20 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-08-05 05:43:20 (GMT)
commit45e5e72eb8488d3df4c183d4e91bf27c19b08b76 (patch)
treebd40af841d43a3da32940299f571179c06cac5a1 /Tools/scripts/pydocgui.pyw
parentb39fa0e0fa84d4fc52388addd9e552f7a1b9152f (diff)
downloadcpython-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/pydocgui.pyw')
-rw-r--r--Tools/scripts/pydocgui.pyw5
1 files changed, 5 insertions, 0 deletions
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()