Connecting Tech Pros Worldwide Help | Site Map

Conditionally subclassing based on Import

David Pratt
Guest
 
Posts: n/a
#1: Oct 3 '08
Hi, just want to conditionally base a class on another if it can be
imported, otherwise base it on object. Does the following look ok
for this?

try:
import foo.bar
except ImportError:
MyBase = foo.bar.Baz
else:
MyBase = object

class Something(MyBase):

Closed Thread


Similar Python bytes