[wxPython-users] Line Breaks Within Parentheses
Christopher Barker
Chris.Barker at noaa.gov
Tue Oct 2 15:55:20 PDT 2007
It looks to me like you broke in the middle of a quoted string -- you
cant do that.
You can't do:
("a long string
that is even longer"
)
(unless it is triple quoted)
You can do:
>>> ("a long string"
... "that is even longer"
... )
'a long stringthat is even longer'
>>>
i.e. two strings that are next to each-other will be merged
If that's not your issue, post the section of code that's barfing...
-Chris
--
Christopher Barker, Ph.D.
Oceanographer
Emergency Response Division
NOAA/NOS/OR&R (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception
Chris.Barker at noaa.gov
More information about the wxpython-users
mailing list