If I run the following command from the cmd.exe, I get an error message that looks like so:
C:\Users\user>ctaags --help
'ctaags' is not recognized as an internal or external command,
operable program or batch file.
Now if I run the same command using Python's subprocess module, I get a different warning:
>>> subprocess.Popen(['ctaags', '--help'])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "c:\Python27\lib\subprocess.py", line 711, in __init__
    errread, errwrite)
  File "c:\Python27\lib\subprocess.py", line 948, in _execute_child
    startupinfo)
WindowsError: [Error 2] The system cannot find the file specified
Based on other commands, I'd expect the output from Popen to exactly match what the shell gives me back, i.e.: 
WindowsError: [Error 2] 'ctaags' is not recognized as an internal or
external command, operable program or batch file.
This is not the case. Why?
ctaa...aags?