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
Calling psutil.users() approximately 4,850 times will end in:
psutil.users()
Fatal Python error: deallocating None Python runtime state: initialized
This can be shown by aggressively calling the function, for example:
import psutil def main(): i = 0 while True: print(i) psutil.users() i += 1 if __name__ == '__main__': main()
I'm assuming this could be similar to this issue using Py_DECREF(Py_None).
Py_DECREF(Py_None)
The text was updated successfully, but these errors were encountered:
a02ebde
Thank you! :)
Sorry, something went wrong.
No branches or pull requests
Summary
Description
Calling
psutil.users()
approximately 4,850 times will end in:This can be shown by aggressively calling the function, for example:
I'm assuming this could be similar to this issue using
Py_DECREF(Py_None)
.The text was updated successfully, but these errors were encountered: