Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #31191
| From | Nobody <nobody@nowhere.com> |
|---|---|
| Subject | Re: Checking for dlls in ctypes |
| Date | 2012-10-13 12:32 +0100 |
| Message-Id | <pan.2012.10.13.11.32.15.146000@nowhere.com> |
| Newsgroups | comp.lang.python |
| References | <975da919-c70a-492a-9d49-62254a76eb6c@googlegroups.com> <mailman.2092.1350059331.27098.python-list@python.org> |
| Organization | Zen Internet |
On Fri, 12 Oct 2012 12:28:17 -0400, Dave Angel wrote: > Using bare excepts is almost never a good idea. If it "works" you get no > clues what went wrong. For example, a typo in source code can trigger a > bare exception, as can a user typing Ctrl-C. So when you're using bare > excepts, you have robbed the user of any way to terminate the program. If you want to catch any error, use "except StandardError:". That covers all errors but not things like KeyboardInterrupt (Ctrl-C) or SystemExit (sys.exit()). In situations such as this, where you try multiple candidates until one succeeds, there's no reason to be any more specific than that. In any case, Python's lack of formal interfaces makes it hard to reliably be more specific. However: you should bear in mind that loading the wrong DLL may just result in an OS-level exception (e.g. segfault), which can't be caught. It's preferable to allow the DLL to be explicitly selected e.g. in a configuration file.
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Checking for dlls in ctypes Wanderer <wanderer@dialup4less.com> - 2012-10-12 08:36 -0700
Re: Checking for dlls in ctypes Dave Angel <d@davea.name> - 2012-10-12 12:28 -0400
Re: Checking for dlls in ctypes Wanderer <wanderer@dialup4less.com> - 2012-10-12 10:57 -0700
Re: Checking for dlls in ctypes Wanderer <wanderer@dialup4less.com> - 2012-10-12 10:57 -0700
Re: Checking for dlls in ctypes Nobody <nobody@nowhere.com> - 2012-10-13 12:32 +0100
Re: Checking for dlls in ctypes MRAB <python@mrabarnett.plus.com> - 2012-10-12 17:57 +0100
Re: Checking for dlls in ctypes Wanderer <wanderer@dialup4less.com> - 2012-10-12 10:52 -0700
Re: Checking for dlls in ctypes Wanderer <wanderer@dialup4less.com> - 2012-10-12 10:52 -0700
Re: Checking for dlls in ctypes 88888 Dihedral <dihedral88888@googlemail.com> - 2012-10-13 06:40 -0700
csiph-web