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


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

Re: Try: rather than if :

Started byVincent Davis <vincent@vincentdavis.net>
First post2015-12-14 16:48 -0700
Last post2015-12-14 16:48 -0700
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: Try: rather than if : Vincent Davis <vincent@vincentdavis.net> - 2015-12-14 16:48 -0700

#100437 — Re: Try: rather than if :

FromVincent Davis <vincent@vincentdavis.net>
Date2015-12-14 16:48 -0700
SubjectRe: Try: rather than if :
Message-ID<mailman.3.1450136961.22044.python-list@python.org>
On Mon, Dec 14, 2015 at 4:14 PM, Cameron Simpson <cs@zip.com.au> wrote:

> First, notice that the code inside the try/except _only_ fetches the
> attribute.  Your version calls the "write" attribute, and also accesses
> handle.name. Either of those might also emit AttributeError, and should
> probably not be silently caught.
>

​I think the intent of the original code was to check if handle had the
attribute "name", I don't think the attribute "write" was the issue.

So then possibly this based on your suggestion:
try:
    write = handel.write
except AttributeError:
    raise
try:
    name = handel.name
    write("# Report_file: %s\n" % name)
except AttributeError:
    pass
write("########################################\n")


Vincent Davis
720-301-3003

[toc] | [standalone]


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


csiph-web