This method returns the absolute path name equivalent to
self.path. It uses the standard Python
function os.path.abspath().
# - - - P a t h I n f o . a b s P a t h - - -
def absPath ( self ):
"""Return self's absolute path name."""
return os.path.abspath ( self.path )