http://docs.python.org/2/library/os.html
"Note All functions in this module raise OSError in the case of invalid or inaccessible file names and paths, or other arguments that have the correct type, but are not accepted by the operating system."
So all functions that starts with os. in front of them i.e. (os.chown and os.listdir) will only raise OSError?
Are there any cases where they would raise other errors such as IOError or whatnot? If so, could you give me some example?
P.S. I am asking this question because the website lists "some" cases but I am not sure if these "some" are the only cases associated with the os module.