summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
* update docGiampaolo Rodola2019-04-051-15/+10
|
* update docGiampaolo Rodola2019-04-052-56/+87
|
* [Win] Process IO priority constants + high priority (#1479 / #1476)Giampaolo Rodola2019-04-051-7/+19
|
* update DEVNOTESGiampaolo Rodola2019-03-281-0/+11
|
* Big docfix (#1464)Giampaolo Rodola2019-03-142-212/+199
| | | | | | | * use https wherever possible * always point to python 3 doc * point to new MSDN urls * use RST references and avoid repetitions of URLs
* pre-releaserelease-5.6.1Giampaolo Rodola2019-03-111-0/+4
|
* fix version highlighting in docs/index (#1455)Evgeni Golov2019-03-111-1/+1
|
* bump up version, fix some doc issuesGiampaolo Rodola2019-03-052-3/+3
|
* pre-releaseGiampaolo Rodola2019-03-051-1/+5
|
* update doc + change git hook locationGiampaolo Rodola2019-03-021-8/+10
|
* move doc; rephrase it a bitGiampaolo Rodola2019-03-012-0/+364
|
* #1291: (BACKWARD-INCOMPATIBLE) remove memory_maps() on OSXGiampaolo Rodola2019-02-281-7/+2
|
* #1291 / OSX: mark memory_maps() as deprecated and make it alwats raise ↵Giampaolo Rodola2019-02-271-34/+33
| | | | AccessDenied
* #fix 1438: do not return any parent() for PID 0 + update docGiampaolo Rodola2019-02-261-11/+9
|
* remove assertionGiampaolo Rodola2019-02-261-0/+3
|
* fix #1437: return pids() in sorted orderGiampaolo Rodola2019-02-261-2/+6
|
* Add Process.parents() method (#1433)Giampaolo Rodola2019-02-251-0/+7
|
* update docGiampaolo Rodola2019-02-211-23/+22
|
* pre-releaseGiampaolo Rodola2019-02-151-0/+4
|
* update docGiampaolo Rodola2019-02-011-4/+1
|
* pre-releaserelease-5.5.0Giampaolo Rodola2019-01-231-0/+4
|
* give CREDITS to @amanusk for #1369 / #1352 and update docGiampaolo Rodola2018-12-011-1/+2
|
* #1350: give credits to @amanuskGiampaolo Rodola2018-11-031-15/+2
|
* pre releaserelease-5.4.8Giampaolo Rodola2018-10-301-1/+5
|
* Correct capitalization of PyPI (#1337)Jon Dufresne2018-09-261-1/+1
| | | As spelled on https://pypi.org/.
* fix #1343: document Process.as_dict() attrs valuesGiampaolo Rodola2018-09-261-5/+8
|
* pre releaserelease-5.4.7Giampaolo Rodola2018-08-141-0/+4
|
* set version to 5.4.7Giampaolo Rodola2018-08-141-2/+2
|
* OSX / SMC / sensors: revert #1284 (#1325)Giampaolo Rodola2018-08-141-4/+0
| | | | | | | | | | | | * setup.py: add py 3.7 * Revert OSX sensors code due to copyright constraints It turns out code contributed in PR #1284 was using parts of a source code released by Apple [1] which uses GPL license which is incompatible with psutil's license (BSD). [1] https://gist.github.com/edvakf/4049362
* disk_io_counters() - linux: mimic iostat behavior (#1313)Giampaolo Rodola2018-07-291-0/+4
| | | Fix #1244, #1305, #1312. disk_io_counters(perdisk=False) on Linux was counting disk device + partitions(s) twice
* fix wrong reference link in docGiampaolo Rodola2018-07-281-2/+2
|
* fix #1309: add STATUS_PARKED constant and fix STATUS_IDLE (both on linux)Giampaolo Rodola2018-07-251-1/+3
|
* Update index.rst (#1308)Ashish Billore2018-07-241-4/+2
| | | Updated Process section
* fix #1279: catch and skip ENODEV in net_if_stat()Giampaolo Rodola2018-07-161-4/+4
|
* winmake: add upload-wheels cmdGiampaolo Rodola2018-06-291-1/+1
|
* Rename OSX to macOS (#1298)Giampaolo Rodola2018-06-261-25/+32
| | | rename OSX to macOS
* #1284: give credits to @amanusk + some minor adjustmentsGiampaolo Rodola2018-06-261-2/+6
|
* Update Python 2 docs URLs to Python 3 (#1293)Jon Dufresne2018-06-101-4/+4
| | | | The Python3 docs are more actively maintained and are the future of the Python project.
* pre-releaserelease-5.4.6Giampaolo Rodola2018-06-071-0/+4
|
* #1273 net_if_addr() namedtuple name has been renamed from "snic" to "snicaddr".Giampaolo Rodola2018-05-041-6/+6
|
* #1270: migrate URLs to new pypi siteGiampaolo Rodola2018-04-251-70/+70
|
* fix docGiampaolo Rodola2018-04-181-1/+1
|
* #1268: fix setup.py's extra_requirerelease-5.4.5Giampaolo Rodola2018-04-131-0/+4
|
* pre-releaserelease-5.4.4Giampaolo Rodola2018-04-131-1/+5
|
* 771 Windows CPU count (#1257)Giampaolo Rodola2018-04-131-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * use GetLogicalProcessorInformation() to get logical cpu_count() * return None if cpu_count() is undetermined + add mock test * style * factor out logical CPU num fun * remove unused code * psutil_get_num_cpus(): provide an option to fail on err * add comments * reuse get_num_cpus() function * error out if get_num_cpus() fail * use GetLogicalProcessorInformationEx to get phys CPU num * on win vista/xp just return None for phys CPU count * rename vars * fix C compiler warnings + remove mingw workarounds * return None if phys cpu count cant' be determined; update HISTORY * update HISTORY * update doc * add WMI tests * refactor tests * print debug msg for cpu phys returning None on win < 7 * try to fix win test * appveyor debug * fix typo * adjust appveyor 64 bit versions * debug msg * fix for loop * re-enable python versions * (maybe) finally fix GetLogicalProcessorInformationEx return len
* update doc / HISTORY / CREDITSGiampaolo Rodola2018-03-171-5/+3
|
* Adding 'slab' info to virtual_memory on linux (#1239)maxime mouial2018-03-171-1/+2
| | | There are 1970 results on stackoverflow for "slab". Also it is being requested by another user https://github.com/giampaolo/psutil/issues/1202. As such I'm going to accept this PR.
* Revert "Move tests out of package to top level directory (#1232)" (#1242)Giampaolo Rodola2018-03-111-1/+6
| | | This reverts commit b578d2febfd35f80fcfa1ce1bdf18d44d21b1581.
* Move tests out of package to top level directory (#1232)Jon Dufresne2018-03-091-6/+1
| | | | | | | | Cleanly separates tests from the package itself. Prevents the tests being installed to site-packages. Tests are still distributed with the source distribution by MANIFEST.in. Avoids installing tests in production environments, leading to less total code in the environment.
* doc typo (#1234)Vincent Vinet2018-03-081-1/+1
|