You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
>>> p = psutil.Process(0)
>>> p.exe
""
>>> p.getcwd()
""
This is inconsistent in case we do:
>>> os.path.exists(p.exe)
False
>>> os.path.exists(p.getcwd())
False
In this case an AccessDenied exception would be more appropriate.
From g.rodola on February 22, 2011 06:31:46
Original issue: http://code.google.com/p/psutil/issues/detail?id=151
The text was updated successfully, but these errors were encountered: