Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.014 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'instance': 0.05; 'url:bugs': 0.05; ':-)': 0.06; 'limit,': 0.07; 'url:peps': 0.09; 'subject:error': 0.10; 'static': 0.15; 'both.': 0.16; 'exceptions.': 0.16; 'ioerror': 0.16; 'oserror': 0.16; 'url:hg': 0.16; 'this:': 0.16; 'wrote:': 0.16; 'header:In-Reply-To:1': 0.22; 'raise': 0.28; 'stefan': 0.29; 'fix': 0.29; 'operations': 0.30; 'at.': 0.30; 'i/o': 0.30; 'url:dev': 0.30; 'chris': 0.32; 'there': 0.33; 'to:addr:python-list': 0.33; '...': 0.34; 'header:User- Agent:1': 0.34; 'charset:us-ascii': 0.36; 'url:python': 0.36; 'something': 0.37; 'could': 0.38; 'think': 0.38; 'received:org': 0.38; 'url:org': 0.38; 'subject:: ': 0.39; 'files,': 0.39; 'subject:with': 0.39; 'to:addr:python.org': 0.39; 'sense': 0.39; 'taking': 0.66; 'concept': 0.72; 'analysis': 0.75; 'subject:... ': 0.84; 'subject:types': 0.84; 'failures': 0.91; 'request:': 0.91 Date: Fri, 9 Sep 2011 23:41:18 +0200 From: Stefan Krah To: python-list@python.org Subject: Re: try... except with unknown error types References: <4e5015ad$0$29986$c3e8da3$5496439d@news.astraweb.com> <7xty9ahb84.fsf@ruckus.brouhaha.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 30 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1315604988 news.xs4all.nl 2527 [2001:888:2000:d::a6]:34952 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:13036 Chris Torek wrote: > (I have also never been sure whether something is going to raise > an IOError or an OSError for various OS-related read or write > operation failures -- such as exceeding a resource limit, for > instance -- so most places that do I/O operations on OS files, I > catch both. Still, it sure would be nice to have a static analysis > tool that could answer questions about potential exceptions. :-) ) There is an effort to fix this: http://www.python.org/dev/peps/pep-3151/ And an implementation ... http://hg.python.org/features/pep-3151/ ... together with a feature request: http://bugs.python.org/issue12555 I think the whole concept makes a lot of sense and is really worth taking a look at. Stefan Krah