On Oct 26, 4:04 am, Daniel Fetchinson <fetchin...@googlemail.com>
wrote:

> (2) made me take care of 2 files instead of 1 from now on.

Not necessarily:

$ cat heredoc.sh
#!/usr/bin/env bash
python << 'EOF'
print "hello world"
def foo():
    print "foo()"
foo()
EOF
$
$ ./heredoc.sh
hello world
foo()
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to