The following exception gets raised when running the tests under Windows
2000:
Traceback (most recent call last):
File "testsuite\objtests.py", line 29, in runTest
os.remove("myfile.obj")
OSError: [Errno 13] Permission denied: 'myfile.obj'
I believe the problem is that a file handle is still open at the time that
the file is being removed. The fix is to delete obj beforehand:
Compare: (<)E:\temp\oops-0.9\testsuite\objtests.py (1407 bytes)
with: (>)E:\temp\oops-0.9\testsuite-new\objtests.py (1423 bytes)
29a29
> del obj
|