We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why: in order to be consistent with psutil.net_connections(). psutil.Process.connections() was wrongly named, it should have kept the net_ prefix.
psutil.net_connections()
psutil.Process.connections()
net_
The old method name will be left in place and work as an alias for the new name. At the same time it will also raise a DeprecationWarning.
DeprecationWarning
The text was updated successfully, but these errors were encountered:
Process.connections()
Process.net_connections()
Process.memory_info_ex()
Successfully merging a pull request may close this issue.
Why: in order to be consistent with
psutil.net_connections()
.psutil.Process.connections()
was wrongly named, it should have kept thenet_
prefix.The old method name will be left in place and work as an alias for the new name. At the same time it will also raise a
DeprecationWarning
.The text was updated successfully, but these errors were encountered: