##// END OF EJS Templates
handle jpg/jpeg in the qtconsole....
handle jpg/jpeg in the qtconsole. This try to handle both image/jpeg image/jpg mimetype that arrives in the qtconsole, when QImage support It, note that image/jpg should never append, but is still supported. It does not allows the export as html/jpeg. The jpeg will be converted to png at save time.

File last commit:

r4794:7a7b2735
r6636:c722f759
Show More
test_pycolorize.py
34 lines | 1001 B | text/x-python | PythonLexer
MinRK
always use StringIO, never cStringIO...
r4794 """Test suite for our color utilities.
Authors
-------
* Min RK
"""
#-----------------------------------------------------------------------------
# Copyright (C) 2011 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING.txt, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
# third party
import nose.tools as nt
# our own
from IPython.utils.PyColorize import Parser
#-----------------------------------------------------------------------------
# Test functions
#-----------------------------------------------------------------------------
def test_unicode_colorize():
p = Parser()
f1 = p.format('1/0', 'str')
f2 = p.format(u'1/0', 'str')
nt.assert_equals(f1, f2)