[Python-mode] python-mode.el-6.0.3 released

Tom Roche Tom_Roche at pobox.com
Fri Oct 7 16:52:45 CEST 2011


Andreas Röhler Thu, 06 Oct 2011 21:00:14 +0200
> http://launchpad.net/python-mode/trunk/6.0.3/+download/python-mode.el-6.0.3.tar.gz

Install looks good. I was able to

VERSION="6.0.3"
PKG_URI="http://launchpad.net/python-mode/trunk/${VERSION}/+download/python-mode.el-${VERSION}.tar.gz"
ROOT_DIR="${HOME}/.emacs.d/site-lisp/python"
VERSION_DIR="${ROOT_DIR}/python-mode.el-${VERSION}"
BCD_RFP="tools/byte-compile-directory.sh" # path relative to ${VERSION_DIR}
for CMD in \
  "pushd ${ROOT_DIR}" \
  "wget -O - ${PKG_URI} | tar xfz -" \
  "popd" \
  "pushd ${VERSION_DIR}" \
  "find ./ -name '*.el' | wc -l" \
  "find ./ -name '*.elc' | wc -l" \
  "chmod a+x ${BCD_RFP}" \
  "${BCD_RFP}" \
  "find ./ -name '*.el' | wc -l" \
  "find ./ -name '*.elc' | wc -l" \
  "popd" \
; do
  echo -e "${CMD}"
  eval "${CMD}"
done

and the only error I got was

> test/python-mode-test.el:27:1:Error: Cannot open load file: py-bug-numbered-tests

The scriptlet above finished with

> find ./ -name '*.el' | wc -l
> 10
> find ./ -name '*.elc' | wc -l
> 9

After I make my init.el call python-mode.el-6.0.3 and restart emacs: no errors, and `M-x ipython` and `M-x python3` both work appropriately.


More information about the Python-mode mailing list