Changeset 834
- Timestamp:
- 03/18/08 20:59:35 (8 months ago)
- Files:
-
- trunk/lib/ipython_api.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/ipython_api.py
r819 r834 284 284 285 285 def prefilter(self, IP, line, continuation): 286 """prefilter pre-processes input to do PyRAF substitutions before passing it on287 to IPython.288 """ 289 line = self.cmd( line)286 """prefilter pre-processes input to do PyRAF substitutions before 287 passing it on to IPython. 288 """ 289 line = self.cmd(str(line)) # use type str here, not unicode 290 290 return self.InteractiveShell._prefilter(IP, line, continuation) 291 291
