On Oct 26, 4:04 am, Daniel Fetchinson <[email protected]> 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
