Home | History | Annotate | Download | only in pexpect-2.4

Lines Matching refs:ExceptionPexpect

90 __all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'run', 'which',
94 class ExceptionPexpect(Exception):
128 class EOF(ExceptionPexpect):
132 class TIMEOUT(ExceptionPexpect):
142 ##class MAXBUFFER(ExceptionPexpect):
502 raise ExceptionPexpect ('Command is an int type. If this is a file descriptor then maybe you want to use fdpexpect.fdspawn which takes an existing file descriptor instead of a command string.')
517 raise ExceptionPexpect ('The command was not found or was not executable: %s.' % self.command)
530 raise ExceptionPexpect('Error! pty.fork() failed: ' + str(e))
585 raise ExceptionPexpect, "Error! Could not open pty with os.openpty()."
589 raise ExceptionPexpect, "Error! Failed os.fork()."
631 raise ExceptionPexpect, "Error! We are not disconnected from a controlling tty."
639 raise ExceptionPexpect, "Error! Could not open child pty, " + child_name
646 raise ExceptionPexpect, "Error! Could not open controlling tty, /dev/tty"
671 raise ExceptionPexpect ('close() could not terminate the child using terminate()')
850 raise ExceptionPexpect ('Reached an unexpected state in read_nonblocking().')
1101 raise ExceptionPexpect ('Cannot wait for dead child process.')
1114 raise ExceptionPexpect ('Wait was called for a child process that is stopped. This is not supported. Is some other process attempting job control with our child pid?')
1140 raise ExceptionPexpect ('isalive() encountered condition where "terminated" is 0, but there was no child process. Did someone else call waitpid() on our process?')
1152 raise ExceptionPexpect ('isalive() encountered condition that should never happen. There was no child process. Did someone else call waitpid() on our process?')
1177 raise ExceptionPexpect ('isalive() encountered condition where child process is stopped. This is not supported. Is some other process attempting job control with our child pid?')
1573 raise ExceptionPexpect ('This method is no longer supported or allowed. Just assign a value to the maxread member variable.')
1580 raise ExceptionPexpect ('This method is no longer supported or allowed. Just assign a value to the logfile member variable.')