summaryrefslogtreecommitdiff
path: root/docs/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Process wait() improvements (#1747)Giampaolo Rodola2020-05-031-2/+3
| | | | | | | | | | | | | | | | | | | | | | * `Process.wait()` on POSIX now returns an `enum` showing the negative which was used to terminate the process: ```python >>> import psutil >>> p = psutil.Process(9891) >>> p.terminate() >>> p.wait() <Negsignal.SIGTERM: -15> ``` * the return value is cached so that the exit code can be retrieved on then next call, mimicking `subprocess.Popen.wait()` * `Process` object provides more `status` and `exitcode` additional info on `str()` and `repr()`: ``` >>> proc psutil.Process(pid=12739, name='python3', status='terminated', exitcode=<Negsigs.SIGTERM: -15>, started='15:08:20') ``` Extra: * improved `wait()` doc * reverted #1736: `psutil.Popen` uses original `subprocess.Popen.wait` method (safer)
* refactor print colors utilsGiampaolo Rodola2020-02-151-0/+7
|
* refactor docGiampaolo Rodola2020-02-121-1/+1
|
* migration towards RTD doc themeGiampaolo Rodola2017-09-071-2/+55
|
* make sphinx build more friendly towards user installationsGiampaolo Rodola2016-07-101-6/+2
|
* fix issue #468: provide RST based documentationGiampaolo Rodola'2014-02-241-0/+177
|
* removing docs committed by accidentGiampaolo Rodola'2013-12-211-177/+0
|
* add readthedocs filesGiampaolo Rodola'2013-12-211-0/+177