summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix typoc-mod-initGiampaolo Rodola2019-10-171-2/+2
|
* port _psutil_osxGiampaolo Rodola2019-10-171-73/+70
|
* port _psutil_bsdGiampaolo Rodola2019-10-171-87/+76
|
* port _psutil_posix.c moduleGiampaolo Rodola2019-10-172-61/+39
|
* check return value of PyModule_AddIntConstantGiampaolo Rodola2019-10-171-27/+28
|
* port _psutil_linuxGiampaolo Rodola2019-10-171-47/+22
|
* update docGiampaolo Rodola2019-10-171-7/+9
|
* fix more CentOS failuresGiampaolo Rodola2019-10-102-29/+9
|
* fix some failing tests on CentOSGiampaolo Rodola2019-10-092-5/+4
|
* test_system: relax test_disk_partitions asserts on mountpoints (#1600)Riccardo Magliocchetti2019-10-081-5/+2
| | | | | | As on at least Solaris and modern Linux systems they can be files too. On linux bind mounts may commonly be used with containers. Fix #1573
* setup.py; rm temp dirGiampaolo Rodola2019-09-301-6/+4
|
* Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-09-302-5/+4
|\
| * Don't pollute tree with temporary configure test files (#1597)Anthony Ramine2019-09-302-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The docs for CCompiler.compile say: > If output_dir is given, object files will be put under it, while retaining their > original path component. That is, foo/bar.c normally compiles to foo/bar.o (for a > Unix implementation); if output_dir is build, then it would compile to build/foo/bar.o. What they forget to say is that path components are also retained if output_dir is not specified, it just means it will do so in the current directory. So if you compile a temporary C file /tmp/foo.c, it will produce a ./tmp/foo.o file relative to the current directory. This commit fixes that issue by passing an explicit output_dir itself located in a temporary directory.
* | #1594: set a limit for eligible CPUs combinationsGiampaolo Rodola2019-09-261-0/+2
| |
* | update HISTORYGiampaolo Rodola2019-09-262-0/+6
|/
* Fix #1563 - do not try to close invalid socket file descriptor (#1585)Athos Ribeiro2019-09-261-11/+6
|
* Removed a typo/copy'n'paste mistake Linux->Windows (#1588)Bastian Ebeling2019-09-181-1/+1
|
* fix #1578: 'perf' lib was renamed to 'pyperf'Giampaolo Rodola2019-09-183-4/+4
|
* update HISTORYGiampaolo Rodola2019-09-151-0/+2
|
* Correct loadavg constants for 5 and 15 minutes. Fixes #1552 (#1583)Ammar Askar2019-09-151-3/+3
|
* Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-09-152-5/+5
|\
| * broken links fix docs/index.rst (#1555)SteveMoto2019-08-271-3/+3
| |
| * typo fix docs/index.rst (#1553)SteveMoto2019-08-271-1/+1
| |
| * typo fix scripts/internal/print_timeline.py (#1556)SteveMoto2019-08-271-1/+1
| |
* | update getloadavg docGiampaolo Rodola2019-09-152-9/+18
| |
* | update README and issue templatesGiampaolo Rodola2019-09-143-3/+1
| |
* | fix #1527: Linux process CPU iowait timeGiampaolo Rodola2019-09-075-7/+42
| |
* | add script to help fix flake8 issuesGiampaolo Rodola2019-06-292-0/+188
| |
* | fix #1546: usage percent may be rounded to 0 on Python 2.Giampaolo Rodola2019-06-282-4/+5
| |
* | Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-06-2814-214/+249
|\ \ | |/
| * PEP-3151: backport FS exceptions to Python 2 (#1544)Giampaolo Rodola2019-06-2816-218/+254
| |
* | use SO_REUSEADDR on UNIX onlyGiampaolo Rodola2019-06-262-2/+3
| |
* | version bump + fix typoGiampaolo Rodola2019-06-192-2/+2
|/
* rename class namesGiampaolo Rodola2019-06-141-7/+8
|
* fix FreeBSD testsGiampaolo Rodola2019-06-142-21/+25
|
* fix various testsGiampaolo Rodola2019-06-145-5/+16
|
* #1536: better detection of zombie procGiampaolo Rodola2019-06-141-3/+16
|
* [NetBSD] cmdline() raise ZombieProcess when unable to decode chars (#1536)Giampaolo Rodola2019-06-143-5/+9
| | | | | | | | | * bug #1536 / NetBSD / cmdline: treat EINVAL as 'return []' This happens with unicode test, meaning the C routine it's unable to decode the unicode chars. Also, fix a bug introduced in 1530 (C impl of cwd()) which does not take ENOENT into account.
* Connection family/type are not converted to enums (#1535)Giampaolo Rodola2019-06-1413-272/+263
|
* fix bsd testGiampaolo Rodola2019-06-131-1/+1
|
* add pip install --trusted-host optGiampaolo Rodola2019-06-131-2/+2
|
* Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-06-121-2/+2
|\
| * Fix #1528: [AIX] use correct definition of size of procbuf (#1533)wiggin152019-06-121-2/+2
| |
* | credits to @wiggin15 for #1528Giampaolo Rodola2019-06-123-3/+8
| |
* | Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-06-121-3/+2
|\ \ | |/
| * Revert "Add handling of missing space in meminfo output (#1517)" (#1531)Giampaolo Rodola2019-06-121-3/+2
| | | | | | This reverts commit 6b994c625db2abaaadf58a0425f9daaf3e4ad9e5.
* | Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-06-122-4/+3
|\ \ | |/
| * Add handling of missing space in meminfo output (#1517)xiaclo2019-06-121-2/+3
| |
| * Travis CI: The sudo tag is now deprecated in Travis (#1521)cclauss2019-06-121-2/+0
| |
* | update docs / HISTORY / CREDITS / @krytarowski for #1530Giampaolo Rodola2019-06-123-1/+12
|/