comparison paint/package.py @ 63:ad174d9f396d

docstring
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 25 Jan 2013 11:10:07 -0800
parents 726008cff4e3
children 1a279bac0afa
comparison
equal deleted inserted replaced
62:726008cff4e3 63:ad174d9f396d
25 class for python package introspection. 25 class for python package introspection.
26 constructor takes the package 'src' 26 constructor takes the package 'src'
27 """ 27 """
28 28
29 def __init__(self, src, verbose=True): 29 def __init__(self, src, verbose=True):
30 """
31 - src : URL or filesystem path to the package
32 """
30 self.src = src 33 self.src = src
31 self.verbose = verbose 34 self.verbose = verbose
32 35
33 # ephemeral data 36 # ephemeral data
34 self._tmppath = None 37 self._tmppath = None