Tagged Questions

6
votes
4answers
2k views

WindowsError [error 5] Access is denied

I'm using the killableprocess package (built on top of subprocess) for running processes Whenever I run the "killableprocess.Popen(command)" piece of code in my script I get the following error: ...
2
votes
3answers
644 views

How to workaround Python “WindowsError messages are not properly encoded” problem?

It's a trouble when Python raised a WindowsError, the encoding of message of the exception is always os-native-encoded. For example: import os os.remove('does_not_exist.file') Well, here we get an ...
1
vote
2answers
2k views

“WindowsError: exception: access violation…” - ctypes question

Howdy all - Here is the prototype for a C function that resides in a DLL: extern "C" void__stdcall__declspec(dllexport) ReturnPulse(double*,double*,double*,double*,double*); In another thread, I ...
1
vote
2answers
220 views

WindowsError: priveledged instruction when saving a FreeImagePy Image in script, works in IDLE

I'm working on a program to do some image wrangling in Python for work. I'm using FreeImagePy because PIL doesn't support multi-page TIFFs. Whenever I try to save a file with it from my program I ...
0
votes
0answers
72 views

What does windows error 0 “ERROR_SUCCESS” mean?

I've written a python program which read a stdout of another process by the pipe redirection. However, the program sucks in this line: print "[Input Thread] ", self.inputPipe.readline(ii) The error ...
0
votes
3answers
71 views

os.system to invoke an exe which lies in a dir whose name contains whitespace

simply my code is as follows: file = 'C:\\Exe\\First Version\\filename.exe' os.system(file) when I run this program, windowserror is raised, can't find the file specified. I found out the problem ...
0
votes
1answer
368 views

Python error: WindowsError: [Error 5]

Access is denied: 'C:\\pythonxy\\Python26\\lib\\site-packages\\win32com\\gen_py\\00020813-0000-0000-C000-000000000046x0x1x6' Does anybody know why this error is happening? and how to avoid it? ...