summaryrefslogtreecommitdiffstats
path: root/Tools/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-xTools/scripts/pydoc.pyw2
-rw-r--r--Tools/scripts/pydocgui.pyw5
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()