[Python-Dev] Fix import errors to have data (original) (raw)
Greg Ewing greg at cosc.canterbury.ac.nz
Fri Jul 30 04:40:38 CEST 2004
- Previous message: [Python-Dev] Re: Can we limit the effects of module execution to sys.modules? (was Fix import errors to have data)
- Next message: [Python-Dev] Fix import errors to have data
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Jim Fulton <jim at zope.com>:
try: import foo except ImportError: # Configure for absense of foo ... else: # Configure for presense of foo ...
Unfortunately, this is a bug trap.
Maybe there's room for another creative use of 'else' here...
import: foo else: # Configure for absense of foo
Greg Ewing, Computer Science Dept, +--------------------------------------+ University of Canterbury, | A citizen of NewZealandCorp, a | Christchurch, New Zealand | wholly-owned subsidiary of USA Inc. | greg at cosc.canterbury.ac.nz +--------------------------------------+
- Previous message: [Python-Dev] Re: Can we limit the effects of module execution to sys.modules? (was Fix import errors to have data)
- Next message: [Python-Dev] Fix import errors to have data
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]