]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Nits: document use of $IDLESTARTUP; display idle version
authorGuido van Rossum <guido@python.org>
Thu, 22 Apr 1999 20:56:23 +0000 (20:56 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 22 Apr 1999 20:56:23 +0000 (20:56 +0000)
Tools/idle/PyShell.py

index 73def14f914c35fae3d03b3ab19451f519e7fba9..76a4beb2d5e4b1f270b12c59a9298de472e52cf8 100644 (file)
@@ -16,6 +16,7 @@ from EditorWindow import EditorWindow, fixwordbreaks
 from FileList import FileList
 from ColorDelegator import ColorDelegator
 from OutputWindow import OutputWindow
+import idlever
 
 # We need to patch linecache.checkcache, because we don't want it
 # to throw away our <pyshell#...> entries.
@@ -406,8 +407,9 @@ class PyShell(OutputWindow):
 
     def begin(self):
         self.resetoutput()
-        self.write("Python %s on %s\n%s\n" %
-                   (sys.version, sys.platform, sys.copyright))
+        self.write("Python %s on %s\n%s\nIDLE %s\n" %
+                   (sys.version, sys.platform, sys.copyright,
+                    idlever.IDLE_VERSION))
         try:
             sys.ps1
         except AttributeError:
@@ -639,7 +641,7 @@ usage: idle.py [-c command] [-d] [-e] [-s] [-t title] [arg] ...
 -c command  run this command
 -d          enable debugger
 -e          edit mode; arguments are files to be edited
--s          run $PYTHONSTARTUP before anything else
+-s          run $IDLESTARTUP or $PYTHONSTARTUP before anything else
 -t title    set title of shell window
 
 When neither -c nor -e is used, and there are arguments, and the first