##// 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:

r2460:e8303d57
r7737:00142486
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')