#compdef pycd

_pycd () {
  local e
  e=$(dirname ${funcsourcetrace[1]%:*})/pycd-completion.bash
  if [ -f $e ]; then
    . $e
  fi
}
