-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: error 'being used by another process' when removing temp files on Windows #5933
New issue
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
Comments
@jorisvandenbossche AFAIKT the final close/remove of
|
@jorisvandenbossche is this still appearing? |
Moved to 0.14, no blocker. Yes, this is still appearing, but I didn't have the time yet to try your suggestion. |
@jorisvandenbossche this still an issue? |
The 'tmp.sv' is still generating that error message yes. But maybe not that of a problem .. |
The error when removing a hdf file seems to be solved. So it is only the The issue there is that when using the
This does not happen with just
|
I think this will fix the doc builds: jreback@4792fe8 the parser is dealloced (and the file closed) by lmk |
I get this error trying to build docs on Windows in pandas version |
It's not a big reason for concern if you simply want to build the docs (in which case you can ignore the error). It would still be nice to fixe the error in general though. |
When building the docs on Windows, I get some errors related to the removal of temporary files. For example, for building io.rst:
For
temp.sv
this is due to:where
reader
is still 'open'. A followingos.remove('tmp.sv')
will generate this error. Is there a way to close aTextFileReader
object?For
store.h5
this is due to the lastos.remove('store.h5')
(before 'SQL queries' http://pandas.pydata.org/pandas-docs/dev/io.html#sql-queries). For this, I don't directly see why this fails, as all the other calls toos.remove('store.h5')
do work (and there is astore.close()
command)The text was updated successfully, but these errors were encountered: