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


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

Re: import syntax

Started byTim Chase <python.list@tim.thechases.com>
First post2013-07-29 15:20 -0500
Last post2013-07-29 15:20 -0500
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: import syntax Tim Chase <python.list@tim.thechases.com> - 2013-07-29 15:20 -0500

#51487 — Re: import syntax

FromTim Chase <python.list@tim.thechases.com>
Date2013-07-29 15:20 -0500
SubjectRe: import syntax
Message-ID<mailman.5263.1375129166.3114.python-list@python.org>
On 2013-07-29 16:09, Dave Angel wrote:
> On 07/29/2013 03:48 PM, Devyn Collier Johnson wrote:
> > The PEP8 recommends importing like this:
> >
> > import os
> > import re
> >
> > not like this:
> >
> > import os, re
>
> I got a bit further, and if I'm only using a couple of functions
> from the import, I'll list them in the comment.

If I just plan to use a small subset, I tend to reach for the

  from sys import stdout, stderr, exit

sort of syntax.  I find it makes my code read a bit more cleanly than
having to type "sys.stderr.write(...)" everywhere but is still pretty
readable.

-tkc

[toc] | [standalone]


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


csiph-web