If you need a platform-independent way to get the name of the file, pass it as an argument and use argparse (or optparse) to read your arguments, don't rely on shell redirection at all.
Use python my.py --output somefile.txt with code such as:
parser = argparse.ArgumentParser()
parser.add_argument('--output', # nargs='?', default=sys.stdout,
type=argparse.FileType('w'),
help="write the output to FILE",
metavar="FILE")
args = parser.parse_args()
filename = args.output.name
If knowing the name is optional and used for some weird optimization, then use Igor Nazarenko's solution and check that sys.platform is 'linux2', otherwise assume that you don't have the name and treat it as a normal pipe.
os.ttyname(fd), which works whenos.isatty(fd)isTrue, and like it, works only on Unix. – Rosh Oxymoron May 10 '11 at 0:41