vote up 1 vote down star

I was intrigued by this answer to my question about getting vim to highlight unmatched brackets in python code. Specifically, I'm talking about the second part of his answer where he mentions that the C syntax highlighting is actually flagging as an error any instance of curly braces inside parens. It is an unobtrusive cue that you have unclosed parens when all of your downstream curly braces light up in red.

That trick works because C syntax doesn't allow curly braces inside parentheses. To satisfy my (morbid?) curiosity, can I do something similar with python code? Is there anything in python syntax that isn't legal inside parentheses?

Note: I'm not trolling for a better answer to my other question (there are plenty of good answers there already). I'm merely curious if this trick is even possible with python code.

flag

@Kristo: What you wrote makes very little sense. The answer is trivially obvious; so why would you ask it? Most people ask questions because they can't do something. What can't you do? What problem do you have? "merely curious" seems silly; there's usually more. – S.Lott Mar 4 at 16:25
The answer wasn't trivially obvious to me. I'm sorry if I caused you confusion. Anyway, I've learned something new from this question so I'm satisfied. – Kristo Mar 4 at 16:41

3 Answers

vote up 4 vote down check

Any Python statement (import, if, for, while, def, class etc.) cannot be in the parentheses:

In [1]: (import sys)
------------------------------------------------------------
File "<ipython console>", line 1
  (import sys)
       ^
<type 'exceptions.SyntaxError'>: invalid syntax
link|flag
Does this include the default if-else? a = b if c else d? – Richard Levasseur Mar 4 at 8:21
the "b if c else d" can be in ()s because it's an expression. The assignment part ("a = ...") cannot, because in Python assignment is a statement. In Python, no statement can be in parentheses. – dalke Mar 4 at 10:04
vote up 0 vote down

I'm not sure what are you trying to do, but how about "def" or "class"?

this snippet is valid when it's not inside parenthesis

class dummy: pass
link|flag
No Statement can be ()'d Only expressions. – S.Lott Mar 4 at 10:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.