From d082b6eaace23486a2e5a027d6ac1b3cd253e8ee Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 26 Aug 2007 23:37:53 +0000 Subject: [PATCH] os.getcwd() now returns a normal string (ie, unicode) --- Lib/idlelib/PyShell.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 21cdbc57d76..6ec625178de 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -1365,11 +1365,8 @@ def main(): if not dir in sys.path: sys.path.insert(0, dir) else: - dir = str(os.getcwd()) ### os.getcwd() returning str8 but sys.path - ### items are type 'str'. Remove the cast - ### when fixed and assertion fails - assert isinstance(os.getcwd(), str8) ### - if not dir in sys.path: + dir = os.getcwd() + if dir not in sys.path: sys.path.insert(0, dir) # check the IDLE settings configuration (but command line overrides) edit_start = idleConf.GetOption('main', 'General',