The constructor for this class differs from PathInfo's constructor in that it requires one
additional argument, the base path.
# - - - B i g I n f o . _ _ i n i t _ _ - - -
def __init__ ( self, path, basePath ):
"""Constructor for BigInfo."""
First we call the parent class constructor.
Then we store the basePath argument in the
internal attribute __basePath.
#-- 1 --
pathinfo.PathInfo.__init__ ( self, path )
#-- 2 --
self.__basePath = basePath