diff -r 94fc661a54a2 -r 703452a2876f DebugClients/Python3/AsyncFile.py --- a/DebugClients/Python3/AsyncFile.py Sat Sep 28 17:40:42 2013 +0200 +++ b/DebugClients/Python3/AsyncFile.py Sat Sep 28 19:06:25 2013 +0200 @@ -63,6 +63,7 @@ the mode of the file. If it is not, an IOError is raised. @param mode the mode to be checked (string) + @exception IOError raised to indicate a bad file descriptor """ if mode != self.mode: raise IOError((9, '[Errno 9] Bad file descriptor')) @@ -293,6 +294,7 @@ Public method to write a string to the file. @param s bytes to be written (string) + @exception socket.error raised to indicate too many send attempts """ self.__checkMode('w') tries = 0