Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #70501 > unrolled thread

Re: Strange syntax error, occurs only when script is executed directly

Started byChris Angelico <rosuav@gmail.com>
First post2014-04-22 22:09 +1000
Last post2014-04-22 22:09 +1000
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Strange syntax error, occurs only when script is executed directly Chris Angelico <rosuav@gmail.com> - 2014-04-22 22:09 +1000

#70501 — Re: Strange syntax error, occurs only when script is executed directly

FromChris Angelico <rosuav@gmail.com>
Date2014-04-22 22:09 +1000
SubjectRe: Strange syntax error, occurs only when script is executed directly
Message-ID<mailman.9435.1398168600.18130.python-list@python.org>
On Tue, Apr 22, 2014 at 8:29 PM, Antoon Pardon
<antoon.pardon@rece.vub.ac.be> wrote:
> However if I call the script directly and want the #! line do its work I get the following error.
>
> # /usr/local/bin/ldapwatch /opt/local/log/openldap.log | head
> /usr/local/bin/ldapwatch: line 3: syntax error near unexpected token `('
> /usr/local/bin/ldapwatch: line 3: `class vslice(object):'

That looks like bash trying to run Python code, so I'd look at
something being wrong with the shebang processing. What's
/opt/local/bin/python? Is it a symlink to something else? Some systems
won't allow any such dereferencing, others (including modern Linux)
allow a maximum of ten or thereabouts, counting one for every symlink
or shebang'd script. If /opt/local/bin/python is a bouncer script that
itself has a shebang, that might be your problem.

ChrisA

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web