Skip to content

Commit

Permalink
BUG: fix 2to3 conversion, some relative imports were missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers authored and pv committed Sep 14, 2011
1 parent b6728b0 commit 6e78138
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/py3tool.py
Expand Up @@ -162,6 +162,7 @@ def custom_mangling(filename):
os.path.join('linalg', 'lapack.py'),
os.path.join('linalg', 'flinalg.py'),
os.path.join('linalg', 'iterative.py'),
os.path.join('linalg', 'misc.py'),
os.path.join('lib', 'blas', '__init__.py'),
os.path.join('lib', 'lapack', '__init__.py'),
os.path.join('ndimage', 'filters.py'),
Expand All @@ -180,6 +181,7 @@ def custom_mangling(filename):
os.path.join('signal', 'signaltools.py'),
os.path.join('signal', 'fir_filter_design.py'),
os.path.join('special', '__init__.py'),
os.path.join('special', 'add_newdocs.py'),
os.path.join('special', 'basic.py'),
os.path.join('special', 'orthogonal.py'),
os.path.join('spatial', '__init__.py'),
Expand All @@ -205,7 +207,7 @@ def custom_mangling(filename):
for mod in ['_vq', '_hierarchy_wrap', '_fftpack', 'convolve',
'_flinalg', 'fblas', 'flapack', 'cblas', 'clapack',
'calc_lwork', '_cephes', 'specfun', 'orthogonal_eval',
'lambertw', 'ckdtree', '_distance_wrap',
'lambertw', 'ckdtree', '_distance_wrap', '_logit',
'_minpack', '_zeros', '_lbfgsb', '_cobyla', '_slsqp',
'_nnls',
'sigtools', 'spline', 'spectral',
Expand Down

0 comments on commit 6e78138

Please sign in to comment.