Staging
v0.5.1
https://github.com/python/cpython
Revision fffe5dbc47785b13a10fbdec54e8fb26d091d9bc authored by Fred Drake on 21 September 2000, 05:25:30 UTC, committed by Fred Drake on 21 September 2000, 05:25:30 UTC
1 parent f585574
Raw File
Tip revision: fffe5dbc47785b13a10fbdec54e8fb26d091d9bc authored by Fred Drake on 21 September 2000, 05:25:30 UTC
Fixed a number of small problems reported by Detlef Lannert
Tip revision: fffe5db
mac.py
import sys
import string
import rcvs

def main():
	while 1:
		try:
			line = raw_input('$ ')
		except EOFError:
			break
		words = string.split(line)
		if not words:
			continue
		if words[0] != 'rcvs':
			words.insert(0, 'rcvs')
		sys.argv = words
		rcvs.main()

main()
back to top