summaryrefslogtreecommitdiff
path: root/psutil/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/__init__.py')
-rw-r--r--psutil/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/__init__.py b/psutil/__init__.py
index bd0d5e4d..5b5fab24 100644
--- a/psutil/__init__.py
+++ b/psutil/__init__.py
@@ -146,6 +146,7 @@ elif WINDOWS:
from ._psutil_windows import NORMAL_PRIORITY_CLASS # NOQA
from ._psutil_windows import REALTIME_PRIORITY_CLASS # NOQA
from ._pswindows import CONN_DELETE_TCB # NOQA
+ from ._psutil_windows import WIN_RLIMIT_MEMORY # NOQA
elif MACOS:
from . import _psosx as _psplatform
@@ -893,7 +894,6 @@ class Process(object):
else:
return self._proc.ionice_set(ioclass, value)
- # Linux only
if hasattr(_psplatform.Process, "rlimit"):
def rlimit(self, resource, limits=None):