##// END OF EJS Templates
Sort directoy listings (case sensitive with files and dirs mixed).
walter.doerwald -
Show More
@@ -1213,7 +1213,7 b' class ils(Table):'
1213 def __iter__(self):
1213 def __iter__(self):
1214 base = ifile(self.base)
1214 base = ifile(self.base)
1215 yield (base / os.pardir).abspath()
1215 yield (base / os.pardir).abspath()
1216 for child in base.listdir():
1216 for child in sorted(base.listdir()):
1217 if self.dirs:
1217 if self.dirs:
1218 if self.files:
1218 if self.files:
1219 yield child
1219 yield child
@@ -1,3 +1,8 b''
1 2007-04-12 Walter Doerwald <walter@livinglogic.de>
2
3 * IPython/Extensions/ipipe.py: (ils) Directoy listings are now
4 sorted (case sensitive with files and dirs mixed).
5
1 2007-04-10 Fernando Perez <Fernando.Perez@colorado.edu>
6 2007-04-10 Fernando Perez <Fernando.Perez@colorado.edu>
2
7
3 * IPython/Release.py (version): Open trunk for 0.8.1 development.
8 * IPython/Release.py (version): Open trunk for 0.8.1 development.
General Comments 0
You need to be logged in to leave comments. Login now