Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # encoding: utf-8
  3. #
  4. # Copyright (c) 2008 Doug Hellmann All rights reserved.
  5. #
  6. """
  7. """
  8.  
  9. __version__ = "$Id$"
  10. #end_pymotw_header
  11.  
  12. import readline
  13.  
  14. readline.read_init_file('myreadline.rc')
  15.  
  16. while True:
  17. line = raw_input('Prompt ("stop" to quit): ')
  18. if line == 'stop':
  19. break
  20. print 'ENTERED: "%s"' % line
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement