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


Groups > comp.lang.python > #48883

n00b question on spacing

Date 2013-06-21 17:17 -0400
Subject n00b question on spacing
From "Yves S. Garret" <yoursurrogategod@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.3669.1371849457.3114.python-list@python.org> (permalink)

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

Hi, I have a question about breaking up really long lines of code in Python.

I have the following line of code:
log.msg("Item wrote to MongoDB database %s/%s" %(settings['MONGODB_DB'],
settings['MONGODB_COLLECTION']), level=log.DEBUG, spider=spider)

Given the fact that it goes off very far to the right on my screen is not
terribly
pleasing to my eyes (and can be rude for other developers).

I was thinking of splitting it up like so:
log.msg("Item wrote to MongoDB database %s/%s"
  %(settings['MONGODB_DB'], settings['MONGODB_COLLECTION']),
  level=log.DEBUG, spider=spider)

Is this ok?  Are there any rules in Python when it comes to breaking up
long lines of
code?

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


Thread

n00b question on spacing "Yves S. Garret" <yoursurrogategod@gmail.com> - 2013-06-21 17:17 -0400
  Re: n00b question on spacing John Gordon <gordon@panix.com> - 2013-06-21 21:47 +0000

csiph-web