Home | History | Annotate | Download | only in scripts

Lines Matching refs:stderr

110   """Print an error message to stderr and exit."""
111 print >>sys.stderr, msg
260 print >>sys.stderr, "Invalid username or password."
263 print >>sys.stderr, (
269 print >>sys.stderr, "Account not verified."
272 print >>sys.stderr, "User has not agreed to TOS."
275 print >>sys.stderr, "The user account has been deleted."
278 print >>sys.stderr, "The user account has been disabled."
281 print >>sys.stderr, ("The user's access to the service has been "
285 print >>sys.stderr, "The service is not available; try again later."
548 If False, both stdout and stderr are ignored.
555 p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
569 errout = p.stderr.read()
571 print >>sys.stderr, errout
573 p.stderr.close()