-
-
Notifications
You must be signed in to change notification settings - Fork 30.6k
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
Support of 'with' statement fo TarFile class #51481
Comments
Currently, the TarFile is not supporting the 'with' statement, which I I've already created a patch including it for consideration. |
Please clean up the patch, and I take another look at it. |
I've cleaned the patch, I don't now why Eclipse added a lot of garbage, |
Here is a patch which expands on Jaime's patch. I was converting tests for bpo-7944 and looked at test_tarfile, and implemented the same feature that he did. All places where context managers should be used in the test, they are used. Includes a doc update with a small example. |
Woops, I accidentally deleted one of the patch files. Adding back. |
The last patch does more than it should for this issue. Here is a minimal patch with the change, test, and doc updates. |
Built on Brian's patch by adding the following items:
|
I have taken the most recent patch by Meador, fixed the documentation example and made the test more verbose. I will check in my patch on time before 2.7 alpha 4 is released if no one of you protests. |
What about changing the exception test to something like what I did in bpo-7232.4.diff? |
That is definitely more succinct, but Lars' solution provides more information about _why_ the test fails. IMHO, the descriptiveness is |
Good point. How about version 5? It uses base Exception in the context manager, which will allow us to differentiate between no exception being raised, and the wrong one being raised. After the context manager, we check the type of the exception to make sure it's correct. I changed the exception being raised to an IOError. It could be anything, but given that AssertionError is what gets raised by the assert functions, it seemed better to avoid that one specifically. This is fairly minor, though. If you change the "raise IOError" to be a pass statement, or another type of exception, you can see that the same level of information is given to you as in patch version 3 by Lars. |
Hello Minor note: I think magic methods shouldn’t have docstrings, because their name is enough doc (or at least enough to go read the doc). At most a one-line comment like “context protocol” can be useful. (The exception is __init__, which doesn’t have a defined set of arguments.) Cheers |
Another version of the patch (bpo-7232.6.diff) that checks if the TarFile object is still open in the __enter__() method (plus a test for that). I removed the docstrings as Eric suggested. This is common practice in the standard library. |
This doesn't necessarily mean it is a correct practice :-). All In particular, the special behavior of an 'IOError' potentially being Also, the last change to 'test_context_manager_exception' has a bug. |
IMO it is okay for __enter__() and __exit__() not to have docstrings. __enter__() raises IOError only if the TarFile object has been already closed. This is exactly the behaviour I would expect, because it is the same every other TarFile method does when the object has been closed. IOW, using a closed TarFile as a context manager is the programmer's mistake, and I don't feel the need to document that case. The fact that __exit__() only closes the TarFile object and does not swallow exceptions is what everyone expects from a "file object". It is the only logical thing to do, no need to document that either. The test_context_manager_exception() test is fine. If the call to tarfile.open() really raises an exception then something is so terribly wrong and probably all of the testsuite's 200 tests will fail anyway. We can safely assume here that this will work, no need to double-check. However, I have changed the docs again to be a bit more specific. |
Patch 'bpo-7232.8.diff' looks good to me. Thanks for the explanation. |
I found an issue that needs to be addressed: if there is an error while the TarFile object is opened for writing, we cannot simply call TarFile.close() in the __exit__() method. close() would try to finalize the archive, i.e. write two zero end-of-archive blocks and a number of padding blocks. I changed __exit__() to call close() only if everything went fine. If there was an exception only the most basic cleanup is done. I added more tests and adapted the docs. |
Okay, it is done, see r78623 (trunk) and r78626 (py3k). Thanks to all for your work and support! |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: