##// END OF EJS Templates
ZMQ heartbeat: catch EINTR exceptions and continue....
ZMQ heartbeat: catch EINTR exceptions and continue. The zmq heartbeat channel exits when it encounters an "Interrupted system call", thereby causing the qtconsole to report that it is not responding, despite the console working perfectly fine. Observed in a large Qt application embedding the ipython qtconsole. Fixes #2310

File last commit:

r12145:cc527181
r12301:b4ca80e2
Show More
.travis.yml
16 lines | 438 B | text/x-yaml | YamlLexer
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 # http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.7
Thomas Kluyver
Tell Travis CI to test on Python 3.3 as well.
r8987 - 3.3
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 before_install:
Thomas Kluyver
Drop 2.6 and 3.2 from Travis tests
r12145 - pip install jinja2
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 - easy_install -q pyzmq
Jonathan Frederic
Add pandoc to TravisCI config
r11510 - sudo apt-get install pandoc
Jonathan Frederic
Added missing `install` keywords
r11517 - pip install pygments
- pip install sphinx
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 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