You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current situation is that every time the program is run, a temporary folder will be generated in the path "C:\Users\XXX\AppData\Local\Temp", and the folder name is similar to "tmps_95rxa0". When the program exits, it cannot be automatically cleared, and the console will also warn:
D:\Program Files\Python\Python313\Lib\tempfile.py:936: ResourceWarning: Implicitly cleaning up <TemporaryDirectory 'C:\Users\XXX\AppData\Local\Temp\tmps_95rxa0'>
_warnings.warn(warn_message, ResourceWarning)
This will cause some temporary files to be generated every time it is run, and slowly, it will cause disk space shortage.
How to automatically clear these temporary files and how to remove these warning messages?
The text was updated successfully, but these errors were encountered:
I found a new problem. When using the latest version in github, when closing the window, the web content in the window will disappear first, and then the window will be closed, which will cause the window to become blank for a certain period of time (a few tenths of a second) when closing the window. This problem will not occur when using the 5.3.2 version released in the pypi repository.
The current situation is that every time the program is run, a temporary folder will be generated in the path "C:\Users\XXX\AppData\Local\Temp", and the folder name is similar to "tmps_95rxa0". When the program exits, it cannot be automatically cleared, and the console will also warn:
D:\Program Files\Python\Python313\Lib\tempfile.py:936: ResourceWarning: Implicitly cleaning up <TemporaryDirectory 'C:\Users\XXX\AppData\Local\Temp\tmps_95rxa0'>
_warnings.warn(warn_message, ResourceWarning)
This will cause some temporary files to be generated every time it is run, and slowly, it will cause disk space shortage.
How to automatically clear these temporary files and how to remove these warning messages?
The text was updated successfully, but these errors were encountered: