Hi Bookaa, 2012/4/21 bookaa <[email protected]>: > run: > pypy>test_all.py translator\test\test_unsimplify.py > > will get a error: > WindowsError: [Error 5] : .... > it can not os.unlink(..) a file.
Yes, this is because you are using pypy to run test_all.py. Please use CPython. There are issues like that, particularly on Windows, that we never digged into. (This one is due to http://pypy.org/compat.html : PyPy does not support refcounting semantics, so files are not closed immediately.) A bientôt, Armin. _______________________________________________ pypy-dev mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-dev
