Skip to content

Commit a5f9fbc

Browse files
committed
pre-release changes
1 parent ee41e18 commit a5f9fbc

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

HISTORY.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Bug tracker at https://github.com/giampaolo/psutil/issues
22

3-
3.3.0 - XXXX-XX-XX
3+
3.3.0 - 2015-11-25
44
==================
55

66
**Enhancements**
77

88
- #558: [Linux] exposed psutil.PROCFS_PATH constant to change the default
99
location of /proc filesystem.
10-
- #615: [OpenBSD] added OpenBSD support.
10+
- #615: [OpenBSD] added OpenBSD support. (contributed by Landry Breuil)
1111

1212
**Bug fixes**
1313

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,7 @@ http://groups.google.com/group/psutil/
346346
Timeline
347347
========
348348
349+
- 2015-11-25: `psutil-3.3.0.tar.gz <https://pypi.python.org/packages/source/p/psutil/psutil-3.3.0.tar.gz>`_
349350
- 2015-10-04: `psutil-3.2.2.tar.gz <https://pypi.python.org/packages/source/p/psutil/psutil-3.2.2.tar.gz>`_
350351
- 2015-09-03: `psutil-3.2.1.tar.gz <https://pypi.python.org/packages/source/p/psutil/psutil-3.2.1.tar.gz>`_
351352
- 2015-09-02: `psutil-3.2.0.tar.gz <https://pypi.python.org/packages/source/p/psutil/psutil-3.2.0.tar.gz>`_

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.. module:: psutil
22
:synopsis: psutil module
33
.. moduleauthor:: Giampaolo Rodola' <[email protected]>
4+
.. versionchanged:: 3.3.0 added support for OpenBSD
45

56
.. warning::
67

psutil/arch/bsd/openbsd.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,9 @@ psutil_swap_mem(PyObject *self, PyObject *args) {
382382
swap_total * DEV_BSIZE,
383383
(swap_total - swap_free) * DEV_BSIZE,
384384
swap_free * DEV_BSIZE,
385-
// TODO: swap in / swap out
385+
// swap in / swap out is not supported as the
386+
// swapent struct does not provide any info
387+
// about it.
386388
0, 0);
387389
}
388390

0 commit comments

Comments
 (0)