Lines Matching refs:stderr
125 """Print an error message to stderr and exit."""
126 print >>sys.stderr, msg
275 print >>sys.stderr, "Invalid username or password."
278 print >>sys.stderr, (
284 print >>sys.stderr, "Account not verified."
287 print >>sys.stderr, "User has not agreed to TOS."
290 print >>sys.stderr, "The user account has been deleted."
293 print >>sys.stderr, "The user account has been disabled."
296 print >>sys.stderr, ("The user's access to the service has been "
300 print >>sys.stderr, "The service is not available; try again later."
563 If False, both stdout and stderr are ignored.
570 p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
584 errout = p.stderr.read()
586 print >>sys.stderr, errout
588 p.stderr.close()