Mercurial > hg > PaInt
comparison paint/package.py @ 50:daa35ff485c2
fixes
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 02 Jan 2013 13:06:49 -0800 |
parents | 85374a69cf89 |
children | 8b4243893474 |
comparison
equal
deleted
inserted
replaced
49:85374a69cf89 | 50:daa35ff485c2 |
---|---|
26 """ | 26 """ |
27 class for python package introspection. | 27 class for python package introspection. |
28 constructor takes the package 'src' | 28 constructor takes the package 'src' |
29 """ | 29 """ |
30 | 30 |
31 def __init__(self, src): | 31 def __init__(self, src, verbose=True): |
32 self.src = src | 32 self.src = src |
33 self.verbose = True | 33 self.verbose = verbose |
34 | 34 |
35 # ephemeral data | 35 # ephemeral data |
36 self._tmppath = None | 36 self._tmppath = None |
37 self._egg_info_path = None | 37 self._egg_info_path = None |
38 self._build_path = None | 38 self._build_path = None |