commit -- why not

This commit is contained in:
Guido van Rossum 1995-04-10 11:47:11 +00:00
parent 5b98ac5b14
commit 5dd52d37eb
8 changed files with 1922 additions and 0 deletions

21
Demo/ibrowse/ib.py Executable file
View file

@ -0,0 +1,21 @@
#! /usr/local/bin/python
# Call ibrowse (the info file browser) under UNIX.
import sys
import ibrowse
if len(sys.argv) > 1:
file = sys.argv[1]
if len(sys.argv) > 2:
if len(sys.argv) > 3:
sys.stdout = sys.stderr
print 'usage:', sys.argv[0], '[file [node]]'
sys.exit(2)
else:
node = sys.argv[2]
else:
node = ''
ibrowse.start('(' + file + ')' + node)
else:
ibrowse.main()