##// END OF EJS Templates
do not require 'PATH' in %rehash/%rehashx. Closes \#155
vivainio -
Show More
@@ -1,7 +1,7 b''
1 1 # -*- coding: utf-8 -*-
2 2 """Magic functions for InteractiveShell.
3 3
4 $Id: Magic.py 2308 2007-05-07 08:25:14Z vivainio $"""
4 $Id: Magic.py 2344 2007-05-15 15:09:39Z vivainio $"""
5 5
6 6 #*****************************************************************************
7 7 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
@@ -2518,7 +2518,7 b' Defaulting color scheme to \'NoColor\'"""'
2518 2518 # typical Linux box involves several thousand entries, so efficiency
2519 2519 # here is a top concern.
2520 2520
2521 path = filter(os.path.isdir,os.environ['PATH'].split(os.pathsep))
2521 path = filter(os.path.isdir,os.environ.get('PATH','').split(os.pathsep))
2522 2522 alias_table = self.shell.alias_table
2523 2523 for pdir in path:
2524 2524 for ff in os.listdir(pdir):
@@ -2552,7 +2552,7 b' Defaulting color scheme to \'NoColor\'"""'
2552 2552 del ip.db['rootmodules']
2553 2553
2554 2554 path = [os.path.abspath(os.path.expanduser(p)) for p in
2555 os.environ['PATH'].split(os.pathsep)]
2555 os.environ.get('PATH','').split(os.pathsep)]
2556 2556 path = filter(os.path.isdir,path)
2557 2557
2558 2558 alias_table = self.shell.alias_table
@@ -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 2341 2007-05-15 14:44:30Z vivainio $
9 $Id: iplib.py 2344 2007-05-15 15:09:39Z vivainio $
10 10 """
11 11
12 12 #*****************************************************************************
@@ -1288,9 +1288,7 b' want to merge them back into the new files.""" % locals()'
1288 1288 Currently it handles auto-indent only."""
1289 1289
1290 1290 #debugx('self.indent_current_nsp','pre_readline:')
1291 print "prer",self.indent_current_nsp # dbg
1292 print
1293
1291
1294 1292 self.readline.insert_text(self.indent_current_str())
1295 1293
1296 1294 def init_readline(self):
@@ -1809,7 +1807,6 b' want to merge them back into the new files.""" % locals()'
1809 1807 #debugx('line')
1810 1808 #debugx('self.indent_current_nsp')
1811 1809 if self.autoindent:
1812 print "ind level", self.indent_current_nsp #dbg
1813 1810 if line:
1814 1811 inisp = num_ini_spaces(line)
1815 1812 if inisp < self.indent_current_nsp:
@@ -1,7 +1,9 b''
1 1 2007-05-15 Ville Vainio <vivainio@gmail.com>
2 2
3 * iplib.py, pycolorize.py, pycolor.1: Paul Mueller's patches that
3 * pycolorize.py, pycolor.1: Paul Mueller's patches that
4 4 make pycolorize read input from stdin when run without arguments.
5
6 * Magic.py: do not require 'PATH' in %rehash/%rehashx. Closes #155
5 7
6 8 2007-05-10 Fernando Perez <Fernando.Perez@colorado.edu>
7 9
General Comments 0
You need to be logged in to leave comments. Login now