On Wed, Aug 13, 2008 at 11:32:36AM -0400, Sebastien Roy wrote: > On a related note, I'm no python expert, but aren't symbol names like > "PASSIVE", "RAW", and "NATIVE" likely to clash with symbols defined by > other classes potentially imported by an application?
The names are defined only in the context of the "dlpi" module, so code outside the module would need to refer to them as dlpi.PASSIVE, etc, or explicitly import the names into its own namespace, as in "from dlpi import PASSIVE". Danek