summaryrefslogtreecommitdiff
path: root/HISTORY.rst
Commit message (Collapse)AuthorAgeFilesLines
* psutil.Popen: inherit from subprocess + support wait(timeout=...) parameter ↵Giampaolo Rodola2020-04-281-0/+2
| | | | (#1736)
* Parallel tests (UNIX) (#1709)Giampaolo Rodola2020-04-261-0/+4
|
* Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2020-04-151-1/+1
|\
| * Fixup release date (#1716)Andrey Babak2020-03-141-1/+1
| |
* | update HISTORY/CREDITSGiampaolo Rodola2020-04-141-0/+10
|/
* Add C linter script (#1698)Giampaolo Rodola2020-02-181-4/+5
|
* revert #1667 process_iter() new_only paramGiampaolo Rodola2020-02-181-1/+0
| | | | | | | | | | On a second thought I realized that process_iter() uses a global variable, so it's not thread safe. That means that if the are 2 threads using it, the first thread one calling the function (+ consume the iterator), will "steal" the processes of the second thread. psutil.cpu_percent() has the same problem. That means we have a problem can't solve with the current API and requires a lot of thinking on how to solve it as it's not obvious.
* update history for #1695Giampaolo Rodola2020-02-151-0/+2
|
* #1693: also increase precision of users()'s login timeGiampaolo Rodola2020-02-131-2/+2
|
* #1681, revert 00a3398Giampaolo Rodola2020-02-131-1/+0
|
* [Windows] increase precision of boot_time() and proc create_time() (#1693)Giampaolo Rodola2020-02-131-0/+2
|
* #1672: determine pid_t size at runtime in setup.pyGiampaolo Rodola2020-02-121-1/+2
|
* Add support for PyPy on Windows (#1686)Giampaolo Rodola2020-02-111-1/+1
|
* fix #1627: [Linux] Process.memory_maps() can raise KeyErrorGiampaolo Rodola2020-02-111-0/+1
|
* fix #1681 / linux / disk_partitions: show swapGiampaolo Rodola2020-02-111-0/+2
|
* [Linux] disk_io_counters() ValueError when parsing /sys/block (#1684)Giampaolo Rodola2020-02-091-0/+2
| | | | | | | | | | | | | | | | | | | Fixes: ``` ====================================================================== ERROR: psutil.tests.test_linux.TestSystemDiskIoCounters.test_emulate_use_sysfs ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/giampaolo/svn/psutil/psutil/tests/test_linux.py", line 1195, in test_emulate_use_sysfs wsysfs = psutil.disk_io_counters(perdisk=True) File "/home/giampaolo/svn/psutil/psutil/__init__.py", line 2065, in disk_io_counters rawdict = _psplatform.disk_io_counters(**kwargs) File "/home/giampaolo/svn/psutil/psutil/_pslinux.py", line 1124, in disk_io_counters for entry in gen: File "/home/giampaolo/svn/psutil/psutil/_pslinux.py", line 1110, in read_sysfs wbytes, wtime, _, busy_time, _) = map(int, fields) ValueError: too many values to unpack (expected 11) ```
* fix #1674, SunOS: disk_partitions() may raise OSError.Giampaolo Rodola2020-02-071-1/+2
|
* Reference exact CVE in HISTORY for 5.6.6 (#1653)Adam Johnson2020-02-051-1/+3
|
* [Windows] speedup connections (#1679)Giampaolo Rodola2020-02-051-0/+1
|
* [Windows] use NtQuerySystemInformation to determine process exe() (#1677)Giampaolo Rodola2020-02-011-0/+2
|
* update HISTORYGiampaolo Rodola2020-01-301-0/+1
|
* Properly handle PID type in C (#1672)Giampaolo Rodola2020-01-291-0/+1
|
* OpenBSD fixes (#1673)Giampaolo Rodola2020-01-271-0/+2
|
* Add CI testing for FreeBSD (#1671)Giampaolo Rodola2020-01-241-0/+1
|
* Add *new_only* parameter for process_iter() (#1667)Giampaolo Rodola2020-01-181-1/+4
|
* AD script: print AD percentage + elapsed timeGiampaolo Rodola2020-01-161-1/+1
|
* fix #1662: QueryFullProcessImageNameW may fail with error code = 0 (Win API ↵Giampaolo Rodola2020-01-141-0/+1
| | | | bug?)
* [Windows] rewrite of open_files() (#1660)Giampaolo Rodola2020-01-091-0/+1
|
* fix #1656: [Windows] Process.memory_full_info() raises AccessDenied even for ↵Giampaolo Rodola2020-01-061-0/+2
| | | | the current user and os.getpid()
* #1652: also drop support for Windows Server 2003Giampaolo Rodola2020-01-021-2/+2
|
* Drop windows XP support (#1652)Giampaolo Rodola2020-01-011-0/+2
| | | | minimum supported now is Windows Vista
* credits for #1648Giampaolo Rodola2019-12-281-0/+5
|
* update HISTORY for #1646Giampaolo Rodola2019-12-211-0/+2
|
* HERE: use realpath() instead of abspath() because of failures seen in ↵Giampaolo Rodola2019-12-181-0/+4
| | | | https://github.com/giampaolo/psutil/pull/1638#issuecomment-567013054
* SunOS, fix #1642: PID 0 raises FileNotFoundErrorGiampaolo Rodola2019-12-181-1/+1
|
* [Solaris] Fix #1637 (#1638)vser12019-12-171-0/+5
|
* fix #1630: can't compile source distribution on WindowsGiampaolo Rodola2019-11-261-0/+10
|
* pre releaserelease-5.6.6Giampaolo Rodola2019-11-251-1/+1
|
* revert #1595Giampaolo Rodola2019-11-221-1/+0
|
* updat HISTORYGiampaolo Rodola2019-11-221-0/+2
|
* #fix #1595 / windows: kill() may not raise AccessDeniedGiampaolo Rodola2019-11-201-0/+1
|
* update CREDITSGiampaolo Rodola2019-11-201-0/+2
|
* update HISTORYGiampaolo Rodola2019-11-121-0/+10
|
* #1615, 1614: remove pyproject.tomlGiampaolo Rodola2019-11-061-0/+9
|
* pre-releaserelease-5.6.4Giampaolo Rodola2019-11-041-1/+503
|
* fix #1568: [Linux] use CC compiler env var if definedGiampaolo Rodola2019-11-041-1/+3
|
* fix #875: convert ERROR_PARTIAL_COPY from ReadProcessMemory to AccessDeniedGiampaolo Rodola2019-11-011-0/+2
|
* Fixes #1570: raise the NTSTATUS returned by NtWow64* syscalls (#1602)Erwan Le Pape2019-10-111-0/+1
|
* fix #1126: cpu_affinity() segfaults on CentOS 5Giampaolo Rodola2019-10-101-0/+2
| | | | | | Remove cpu_affinity() support for CentOS 5 (it's 8 years old anyway); remove the dual implementation. Recent manylinux versions should use CentOS 6.
* update HISTORYGiampaolo Rodola2019-09-261-0/+2
|