##// END OF EJS Templates
Treat __init__.pyc same as __init__.py in module_list...
Treat __init__.pyc same as __init__.py in module_list There are some circumstances where packages on disk could only have a .pyc version of __init__.py. It would be nice if ipython would autocomplete them as well. I've been using this in a production environment for several weeks now.

File last commit:

r7928:16b88195
r8538:56ab409f
Show More
.travis.yml
13 lines | 337 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
before_install:
- easy_install -q pyzmq
install:
- python setup.py install -q
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi