summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2021-12-29 10:20:34 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2021-12-29 10:20:34 +0100
commitfc78f0f77fd56e1f5640b0d9fc704ad756cff8a5 (patch)
tree3aaa5f763931bf2044114bde8ffb40130c9b5200
parentc23ee5417d22eaaadea229a081837387e1869eac (diff)
downloadpsutil-fc78f0f77fd56e1f5640b0d9fc704ad756cff8a5.tar.gz
fix style
Signed-off-by: Giampaolo Rodola <g.rodola@gmail.com>
-rw-r--r--HISTORY.rst17
1 files changed, 9 insertions, 8 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index c7fdb64b..cadb6f3d 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -134,6 +134,12 @@ XXXX-XX-XX
- 1729_: parallel tests on UNIX (``make test-parallel``). They're twice as fast!
- 1741_: ``make build/install`` is now run in parallel and it's about 15% faster
on UNIX.
+- 1747_: `Process.wait()`_ return value is cached so that the exit code can be
+ retrieved on then next call.
+- 1757_: memory leak tests are now stable.
+- 1768_, [Windows]: added support for Windows Nano Server. (contributed by
+ Julien Lebot)
+
- 1747_, [POSIX]: `Process.wait()`_ on POSIX now returns an enum, showing the
negative signal which was used to terminate the process::
>>> import psutil
@@ -141,16 +147,11 @@ XXXX-XX-XX
>>> p.terminate()
>>> p.wait()
<Negsignal.SIGTERM: -15>
-- 1747_: `Process.wait()`_ return value is cached so that the exit code can be
- retrieved on then next call.
- 1747_: `Process`_ class provides more info about the process on ``str()``
and ``repr()`` (status and exit code)::
>>> proc
psutil.Process(pid=12739, name='python3', status='terminated',
exitcode=<Negsigs.SIGTERM: -15>, started='15:08:20')
-- 1757_: memory leak tests are now stable.
-- 1768_, [Windows]: added support for Windows Nano Server. (contributed by
- Julien Lebot)
**Bug fixes**
@@ -1893,11 +1894,11 @@ In most cases accessing the old names will work but it will cause a
- 311_: system memory functions has been refactorized and rewritten and now
provide a more detailed and consistent representation of the system
memory. Added new `virtual_memory()`_ and `swap_memory()`_ functions.
- All old memory-related functions are deprecated.
- Also two new example scripts were added: `free.py`_ and `meminfo.py`_.
+ All old memory-related functions are deprecated. Also two new example scripts
+ were added: `free.py`_ and `meminfo.py`_.
- 312_: ``net_io_counters()`` namedtuple includes 4 new fields:
``errin``, ``errout``, ``dropin`` and ``dropout``, reflecting the number of
- packets dropped and with errors.
+ packets dropped and with errors.
**Bug fixes**