Changeset 3005
- Timestamp:
- 02/01/08 10:43:34 (10 months ago)
- Files:
-
- ipython/trunk/IPython/iplib.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ipython/trunk/IPython/iplib.py
r3004 r3005 1563 1563 try: 1564 1564 self.interact(banner) 1565 # XXX for testing of a readline-decoupled repl loop 1566 #self.interact_with_readline() 1565 #self.interact_with_readline() 1566 # XXX for testing of a readline-decoupled repl loop, call interact_with_readline above 1567 1567 1568 break 1568 1569 except KeyboardInterrupt: … … 1703 1704 while not self.exit_now: 1704 1705 self.interact_prompt() 1705 line = line = raw_input_original().decode(self.stdin_encoding) 1706 if self.more: 1707 self.rl_do_indent = True 1708 else: 1709 self.rl_do_indent = False 1710 line = raw_input_original().decode(self.stdin_encoding) 1706 1711 self.interact_handle_input(line) 1707 1712
