Michael Urman wrote: >> p = os.path.normpath( os.path.join( __file__, "../..", "lib" ) ) > > Shouldn't an example avoid using the path separator directly within a > string literal? And avoid using a platform-specific parent directory specifier: p = path.normpath(path.join(__file__, os.pardir, os.pardir, "lib")) -- Greg