merged win spawn patch
diff --git a/Lib/idlelib/spawn.py b/Lib/idlelib/spawn.py
index 22617ed..be8fdf7 100644
--- a/Lib/idlelib/spawn.py
+++ b/Lib/idlelib/spawn.py
@@ -42,7 +42,7 @@
   #   kill_zombies function is a noop.
 
   def spawn(bin, *args):
-    nargs = [bin]
+    nargs = ['"'+bin+'"']
     for arg in args:
       nargs.append( '"'+arg+'"' )
     os.spawnv( os.P_NOWAIT, bin, nargs )