##// END OF EJS Templates
remove dir = dir /on auto alias, it broke other dir auto aliases
vivainio -
Show More
@@ -6,7 +6,7 b' Requires Python 2.3 or newer.'
6 6
7 7 This file contains all the classes and helper functions specific to IPython.
8 8
9 $Id: iplib.py 2719 2007-09-06 18:53:34Z vivainio $
9 $Id: iplib.py 2725 2007-09-07 08:59:10Z vivainio $
10 10 """
11 11
12 12 #*****************************************************************************
@@ -571,7 +571,7 b' class InteractiveShell(object,Magic):'
571 571 )
572 572 auto_alias = auto_alias + ls_extra
573 573 elif os.name in ['nt','dos']:
574 auto_alias = ('dir dir /on', 'ls dir /on',
574 auto_alias = ('ls dir /on',
575 575 'ddir dir /ad /on', 'ldir dir /ad /on',
576 576 'mkdir mkdir','rmdir rmdir','echo echo',
577 577 'ren ren','cls cls','copy copy')
@@ -1,3 +1,8 b''
1 2007-09-07 Ville Vainio <vivainio@gmail.com>
2
3 * iplib.py: do not auto-alias "dir", it screws up other dir auto
4 aliases.
5
1 6 2007-09-07 Fernando Perez <Fernando.Perez@colorado.edu>
2 7
3 8 * IPython/OInspect.py (Inspector.pinfo): fixed bug that was
General Comments 0
You need to be logged in to leave comments. Login now