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
Since the last changes to this scandir module, CPython has fixed a couple of issues like adding a finalizer and adding a .close() method to the iterator. Python 3.6 added support for the with statement too. These changes from CPython should be included here.
The text was updated successfully, but these errors were encountered:
benhoyt
changed the title
Add finalizer and close method from CPython
Add finalizer, close method, and "with" statement support from CPython
Jan 3, 2017
benhoyt
changed the title
Add finalizer, close method, and "with" statement support from CPython
Add new features from CPython (finalizer, close, "with" support, dir_fd handling)
Sep 25, 2021
I don't really have much time to work on scandir at this point, but if someone wants to submit a PR to update the library to include these features from CPython, go ahead!
Since the last changes to this scandir module, CPython has fixed a couple of issues like adding a finalizer and adding a
.close()
method to the iterator. Python 3.6 added support for thewith
statement too. These changes from CPython should be included here.The text was updated successfully, but these errors were encountered: