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


Groups > comp.lang.python > #11092

allow line break at operators

Date 2011-08-09 21:42 -0700
From Yingjie Lan <lanyjie@yahoo.com>
Subject allow line break at operators
Newsgroups comp.lang.python
Message-ID <mailman.2083.1312951551.1164.python-list@python.org> (permalink)

Show all headers | View raw


Hi all,

When writing a long expresion, one usually would like to break it into multiple lines. Currently, you may use a '\' to do so, but it looks a little awkward (more like machine-oriented thing). Therefore I start wondering why not allow line breaking at an operator, which is the standard way of breaking a long expression in publication? Here is an example:

#the old way

x = 1+2+3+4+\
      1+2+3+4

#the new way
x = 1+2+3+4+ #line continues as it is clearly unfinished

      1+2+3+4

Of course, the dot operator is also included, which may facilitate method chaining:

x = svg.append( 'circle' ).
      r(2).cx(1).xy(1).
      foreground('black').bkground('white')

Thoughts?

Yingjie

Back to comp.lang.python | Previous | NextNext in thread | Find similar | Unroll thread


Thread

allow line break at operators Yingjie Lan <lanyjie@yahoo.com> - 2011-08-09 21:42 -0700
  Re: allow line break at operators TheSaint <no@nowhere.net.no> - 2011-08-10 19:26 +0800

csiph-web