Obspy installation missing methods

Hi,
I recently updated my obspy installation on my laptop via 'easy_install -U obspy'. Since the update the array_analysis methods seem to be missing. Available methods are listed below. I tried reinstalling but the problem persists. Anyone know how I can get these methods back??

In [16]: dir(obspy.signal)
Out[16]:
['PPSD',
  '__builtins__',
  '__doc__',
  '__file__',
  '__name__',
  '__package__',
  '__path__',
  'arPick',
  'bandpass',
  'bandstop',
  'bwith',
  'carlSTATrig',
  'centroid',
  'cfrequency',
  'classicSTALTA',
  'classicSTALTAPy',
  'coincidenceTrigger',
  'cornFreq2Paz',
  'cosTaper',
  'cpxtrace',
  'cross_correlation',
  'delayedSTALTA',
  'detrend',
  'domperiod',
  'eigval',
  'envelope',
  'estimateMagnitude',
  'filter',
  'freqattributes',
  'headers',
  'highpass',
  'hoctavbands',
  'instBwith',
  'instFreq',
  'integerDecimation',
  'invsim',
  'konnoOhmachiSmoothing',
  'konnoohmachismoothing',
  'logcep',
  'lowpass',
  'lowpassFIR',
  'normEnvelope',
  'pazToFreqResp',
  'pkBaer',
  'polarization',
  'psd',
  'recSTALTA',
  'recSTALTAPy',
  'remezFIR',
  'rotate',
  'rotate_LQT_ZNE',
  'rotate_NE_RT',
  'rotate_RT_NE',
  'rotate_ZNE_LQT',
  'seisSim',
  'sonogram',
  'specInv',
  'spectral_estimation',
  'trigger',
  'triggerOnset',
  'util',
  'utlGeoKm',
  'utlLonLat',
  'xcorr',
  'xcorrPickCorrection',
  'xcorr_3C',
  'zDetect']

Hi David,

you should be able to import in nonetheless, try

>>> from obspy.signal import array_processing

Simply importing obspy.signal does not automatically import all of its submodules. Only those specified in the __init__.py or already imported otherwise will show up in the tap completion (or the dir() function for that matter). See the Python documentation for more details: http://docs.python.org/2/tutorial/modules.html#importing-from-a-package

If it still does not work let us know.

Cheers!

Lion

Thanks, that worked.