##// END OF EJS Templates
move _encode_binary to jsonutil.encode_images...
move _encode_binary to jsonutil.encode_images And fix identification of PNG/JPEG data, which could be double-encoded when using a JSON library that decodes to str instead of unicode (simplejson 2.6, for instance). Changes are tested.

File last commit:

r7633:2496c83f
r7737:00142486
Show More
.travis.yml
14 lines | 375 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
before_install:
- pip install --use-mirrors numpy
- 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