Ok so I started using psutil 2.1.1 with Python 2.7.6 and I wanted to test some commands as follows:
import psutil
psutil.pids()
p = psutil.Process(6096)
p.name() # gives u'googletalk.exe'
p.terminal()
These are the commands I used from the psutil 2.1.1 documentation, I used every command from the process management section.
The moment I use p.terminal I get the error:
'Process' object has no attribute 'terminal'
I used the above code in both the shell and a new file with the same result.