I don't understand what this code is doing, I'm wanting to run a command line, in Mac OS X, the code I'm using is from somebody running a Windows command line. The command still executes, but I'd like to know what the sys.platform!="win32" is for, and if I should change it to something else for Mac OS X. It seems to be saying sys.platform is not Win32, but that doesn't seem to me.
return_code = subprocess.call(str(cline), shell=(sys.platform!="win32"))