diff options
author | David Cournapeau <cournape@gmail.com> | 2009-10-01 05:49:54 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-10-01 05:49:54 +0000 |
commit | db419336ed441f9282f43b669998864857620b4e (patch) | |
tree | 542385c0b3cdf43a6402c56c59900110ac51267f /numpy/distutils/numpy_distribution.py | |
parent | 28227835142b13ee55b9ff7ca0d0ddd5606b3136 (diff) | |
download | numpy-db419336ed441f9282f43b669998864857620b4e.tar.gz |
Put scons data into its own class.
Diffstat (limited to 'numpy/distutils/numpy_distribution.py')
-rw-r--r-- | numpy/distutils/numpy_distribution.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/numpy/distutils/numpy_distribution.py b/numpy/distutils/numpy_distribution.py index 4424e34cd..ea8182659 100644 --- a/numpy/distutils/numpy_distribution.py +++ b/numpy/distutils/numpy_distribution.py @@ -15,18 +15,3 @@ class NumpyDistribution(Distribution): def has_scons_scripts(self): return bool(self.scons_data) - - def get_scons_scripts(self): - return [i[0] for i in self.scons_data] - - def get_scons_pre_hooks(self): - return [i[1] for i in self.scons_data] - - def get_scons_post_hooks(self): - return [i[2] for i in self.scons_data] - - def get_scons_sources(self): - return [i[3] for i in self.scons_data] - - def get_scons_parent_names(self): - return [i[4] for i in self.scons_data] |