Comment #2 on issue 3492 by [email protected]: test_plot does not clean up after itself
http://code.google.com/p/sympy/issues/detail?id=3492

We are using http://docs.python.org/2/library/tempfile.html#tempfile.NamedTemporaryFile. What Python version are you using? According to that, since Python 2.6, delete=True has been the default, which causes it to delete the file as soon as it's closed (which should be as soon as the tests are done).

Actually, we don't use the NamedTemporaryFile object directly, but rather just get its name attribute. I hope this doesn't negate its effect.

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sympy-issues?hl=en.

Reply via email to