From 93701e2a00f081b435025fd0118280106c36c536 Mon Sep 17 00:00:00 2001 From: "Patrick K. O'Brien" Date: Mon, 28 Apr 2003 16:10:40 +0000 Subject: [PATCH] Removed addition of current dir to sys.path. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20370 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wxPython/py/shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wxPython/wxPython/py/shell.py b/wxPython/wxPython/py/shell.py index 89c3fc4bda..0d30089096 100644 --- a/wxPython/wxPython/py/shell.py +++ b/wxPython/wxPython/py/shell.py @@ -191,8 +191,8 @@ class Shell(editwindow.EditWindow): self.stdin = sys.stdin self.stdout = sys.stdout self.stderr = sys.stderr - # Add the current working directory "." to the search path. - sys.path.insert(0, os.curdir) +## # Add the current working directory "." to the search path. +## sys.path.insert(0, os.curdir) # Import a default interpreter class if one isn't provided. if InterpClass == None: from interpreter import Interpreter