Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /opt/alt/python27/lib64/python2.7/site-packages/psutil/ |
# Copyright (c) 2009, Jay Loden, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """This module is deprecated as exceptions are defined in _error.py and are supposed to be accessed from 'psutil' namespace as in: - psutil.NoSuchProcess - psutil.AccessDenied - psutil.TimeoutExpired """ import warnings from psutil._error import * warnings.warn("psutil.error module is deprecated and scheduled for removal; " \ "use psutil namespace instead", category=DeprecationWarning, stacklevel=2)